From afdb19b3b5df42264b90ac98d92df24e92dc5982 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 26 Jun 2014 20:46:12 -0400 Subject: [PATCH] Skeleton outline of the guide. --- src/doc/guide.md | 61 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/src/doc/guide.md b/src/doc/guide.md index fd7846386ed..bf54b3dc6a4 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -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 + -- GitLab