rust/src/doc/trpl
2015-02-12 20:48:09 +13:00
..
advanced.md Fix typo in documentation. 2015-01-09 22:35:18 -08:00
arrays-vectors-and-slices.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
basic.md
closures.md remove obsolete closure syntax from the guide 2015-02-09 15:32:21 -06:00
comments.md updating the link to rustdoc 2015-01-31 12:27:57 +01:00
compound-data-types.md rollup merge of #22007: thiagooak/master 2015-02-10 08:41:38 -08:00
conclusion.md Update Conclusion of The Rust Programming Language 2015-01-09 19:48:27 +01:00
concurrency.md Fixed one newly created instance of range(start, end). 2015-02-12 18:51:32 +13:00
crates-and-modules.md docs: add wildcard syntax in use for modules 2015-01-25 12:58:13 +10:00
documentation.md Move rustdoc.md into the book 2015-01-21 14:59:25 -05:00
error-handling.md s/Show/Debug/g 2015-01-29 07:49:02 -05:00
ffi.md Fix more rollup problems 2015-01-17 15:25:42 -05:00
functions.md Fix typo. 2015-01-17 10:51:07 -05:00
generics.md Small fix in TRPL 3.9 2015-01-20 11:36:29 -05:00
guessing-game.md Updated usage of StrExt.parse() as per a recommendation by edwardw. 2015-02-12 20:48:09 +13:00
hello-cargo.md Merge pull request #20833 from nstoddard/master 2015-01-10 14:15:11 +00:00
hello-world.md Small grammar fix in the book 2015-01-12 10:45:32 -05:00
if.md Change the title of if statement in trpl book. 2015-01-20 00:41:59 +08:00
installing-rust.md remove discuss link from the book 2015-01-23 13:53:19 -05:00
intermediate.md
iterators.md Updated documentation to use range notation syntax. 2015-02-12 18:51:31 +13:00
looping.md Fix type inference problems in tests and docs 2015-01-21 11:16:00 -08:00
macros.md fix formatting 2015-01-18 21:23:22 +08:00
match.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
method-syntax.md Soup up 'method syntax' chapter of the Book 2015-01-23 11:04:55 -05:00
more-strings.md Don't use as_slice() in docs 2015-01-30 11:22:45 -05:00
ownership.md Updated documentation to use range notation syntax. 2015-02-12 18:51:31 +13:00
patterns.md Test fixes and rebase conflicts 2015-01-30 14:53:34 -08:00
plugins.md Use a crate attribute to load plugins 2015-02-09 13:27:27 -08:00
pointers.md s/Show/Debug/g 2015-01-29 07:49:02 -05:00
README.md Link to sections in the book's README.md 2015-01-12 10:59:21 -05:00
standard-input.md Fix a missed io => old_io 2015-01-30 11:53:12 -06:00
static-and-dynamic-dispatch.md Add documentation on trait objects. 2015-02-09 21:38:49 -05:00
strings.md Closes issue #21850 2015-02-02 00:46:34 +00:00
SUMMARY.md Add documentation on trait objects. 2015-02-09 21:38:49 -05:00
testing.md Updated documentation to use range notation syntax. 2015-02-12 18:51:31 +13:00
traits.md Add documentation on trait objects. 2015-02-09 21:38:49 -05:00
unsafe.md Feature-gate #![no_std] 2015-02-07 10:49:58 -08:00
variable-bindings.md Fix up titles of TRPL chapters 2015-01-17 10:51:07 -05:00

% The Rust Programming Language

Welcome! This book will teach you about the Rust Programming Language. Rust is a modern systems programming language focusing on safety and speed. It accomplishes these goals by being memory safe without using garbage collection.

"The Rust Programming Language" is split into three sections, which you can navigate through the menu on the left.

Basics

This section is a linear introduction to the basic syntax and semantics of Rust. It has individual sections on each part of Rust's syntax, and culminates in a small project: a guessing game.

After reading "Basics," you will have a good foundation to learn more about Rust, and can write very simple programs.

Intermediate

This section contains individual chapters, which are self-contained. They focus on specific topics, and can be read in any order.

After reading "Intermediate," you will have a solid understanding of Rust, and will be able to understand most Rust code and write more complex programs.

Advanced

In a similar fashion to "Intermediate," this section is full of individual, deep-dive chapters, which stand alone and can be read in any order. These chapters focus on the most complex features, as well as some things that are only available in upcoming versions of Rust.

After reading "Advanced," you'll be a Rust expert!