rust/src/doc/trpl
2015-01-20 19:02:09 +00: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 TRPL: Anti-example failing for the wrong reason. 2015-01-14 15:24:41 +01:00
comments.md Cosmetic updates to TRPL text 2015-01-10 23:11:26 +01:00
compound-data-types.md docs: grammar fix 2015-01-17 10:51:53 -05:00
conclusion.md Update Conclusion of The Rust Programming Language 2015-01-09 19:48:27 +01:00
crates-and-modules.md docs: typo 2015-01-20 19:02:09 +00:00
error-handling.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -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 Intpocalypse, book edition. 2015-01-17 10:51:07 -05:00
guessing-game.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05: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 Cosmetic updates to TRPL text 2015-01-10 23:11:26 +01:00
installing-rust.md
intermediate.md
iterators.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
looping.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
macros.md Fix up titles of TRPL chapters 2015-01-17 10:51:07 -05: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 Standardize punctuation & formatting of TRPL 2015-01-08 17:15:26 -08:00
ownership.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
patterns.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
plugins.md Fix up titles of TRPL chapters 2015-01-17 10:51:07 -05:00
pointers.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
README.md Link to sections in the book's README.md 2015-01-12 10:59:21 -05:00
rust-book.css
standard-input.md doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05:00
strings.md Standardize punctuation & formatting of TRPL 2015-01-08 17:15:26 -08:00
SUMMARY.md Purge references to Rust tasks from TRPL. 2015-01-12 09:15:33 +00:00
testing.md Fix up titles of TRPL chapters 2015-01-17 10:51:07 -05:00
threads.md Intpocalypse, book edition. 2015-01-17 10:51:07 -05:00
traits.md Intpocalypse, book edition. 2015-01-17 10:51:07 -05:00
unsafe.md Auto merge of #21257 - alexcrichton:issue-20064, r=pnkfelix 2015-01-20 02:23:49 +00: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!