Skeleton outline of the guide.
This commit is contained in:
parent
8fe47bc3bb
commit
afdb19b3b5
1 changed files with 61 additions and 0 deletions
|
@ -411,3 +411,64 @@ rest of your Rust career.
|
|||
|
||||
Next, we'll learn more about Rust itself, by starting to write a more complicated
|
||||
program. We hope you want to do more with Rust than just print "Hello, world!"
|
||||
|
||||
## If
|
||||
|
||||
## Functions
|
||||
|
||||
return
|
||||
|
||||
comments
|
||||
|
||||
## Testing
|
||||
|
||||
attributes
|
||||
|
||||
stability markers
|
||||
|
||||
## Crates and Modules
|
||||
|
||||
visibility
|
||||
|
||||
## Compound Data Types
|
||||
|
||||
Tuples
|
||||
|
||||
Structs
|
||||
|
||||
Enums
|
||||
|
||||
## Match
|
||||
|
||||
## Looping
|
||||
|
||||
for
|
||||
|
||||
while
|
||||
|
||||
loop
|
||||
|
||||
break/continue
|
||||
|
||||
iterators
|
||||
|
||||
## Lambdas
|
||||
|
||||
## Generics
|
||||
|
||||
## Traits
|
||||
|
||||
## Operators and built-in Traits
|
||||
|
||||
## Ownership and Lifetimes
|
||||
|
||||
Move vs. Copy
|
||||
|
||||
Allocation
|
||||
|
||||
## Tasks
|
||||
|
||||
## Macros
|
||||
|
||||
## Unsafe
|
||||
|
||||
|
|
Loading…
Reference in a new issue