rust/src/doc/trpl
2015-02-23 11:27:11 -05:00
..
advanced-macros.md Rewrite the macros chapter 2015-02-16 10:59:40 -08:00
advanced.md Fix typo in documentation. 2015-01-09 22:35:18 -08:00
arrays-vectors-and-slices.md Note that Vec<T> is heap allocated. 2015-02-13 18:49:21 -05:00
basic.md Fix dead links in the guide and reorganize 2015-01-08 10:27:03 -08:00
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 #22410 - Reignbeaux:master, r=steveklabnik 2015-02-17 17:33:19 +05:30
conclusion.md Update Conclusion of The Rust Programming Language 2015-01-09 19:48:27 +01:00
concurrency.md Update docs by dropping suffixes except where they served to instruct. 2015-02-18 09:09:14 -05:00
crates-and-modules.md Documentation Fixes 2015-02-14 16:55:53 +01:00
documentation.md fix doctest 2015-02-17 21:28:54 +05:30
error-handling.md s/Show/Debug/g 2015-01-29 07:49:02 -05:00
ffi.md rollup merge of #22484: riginding/master 2015-02-18 14:32:12 -08:00
functions.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
generics.md Small fix in TRPL 3.9 2015-01-20 11:36:29 -05:00
glossary.md improve text 2015-02-15 20:41:44 +01:00
guessing-game.md docs: correct guessing game to mention old_io module instead of io 2015-02-19 05:13:49 +00:00
hello-cargo.md Merge pull request #20833 from nstoddard/master 2015-01-10 14:15:11 +00:00
hello-world.md book: link to a file with configs links 2015-02-15 14:38:47 +03:00
if.md Add documentation for else if to trpl 2015-02-18 16:26:39 -08:00
installing-rust.md Update uninstall instructions 2015-02-12 20:36:20 -08:00
intermediate.md Fix dead links in the guide and reorganize 2015-01-08 10:27:03 -08:00
iterators.md Remove use of range() in iterator docs. 2015-02-16 04:53:21 -05:00
looping.md Fix type inference problems in tests and docs 2015-01-21 11:16:00 -08:00
macros.md Rewrite the macros chapter 2015-02-16 10:59:40 -08:00
match.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
method-syntax.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
more-strings.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
ownership.md Rollup merge of #22027 - iblech:patch-1, r=steveklabnik 2015-02-17 15:41:30 +05:30
patterns.md Replace all uses of &foo[] with &foo[..] en masse. 2015-02-18 17:36:03 -05:00
plugins.md Warn when linking a plugin into a non-plugin crate 2015-02-12 12:44:31 -08:00
pointers.md Reintroduce box syntax where needed 2015-02-13 12:35:56 -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 Static and dynamic dispatch: missing word 2015-02-23 11:27:11 -05:00
strings.md Closes issue #21850 2015-02-02 00:46:34 +00:00
SUMMARY.md Rollup merge of #22393 - kmcallister:macros-chapter , r=steveklabnik 2015-02-17 17:33:53 +05:30
testing.md Updated documentation to use range notation syntax. 2015-02-12 18:51:31 +13:00
traits.md Test fixes and rebase conflicts 2015-02-17 19:42:28 -08:00
unsafe.md Rollup merge of #22027 - iblech:patch-1, r=steveklabnik 2015-02-17 15:41:30 +05:30
variable-bindings.md Added explanation to trpl of integer types. 2015-02-15 13:51:36 -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!