rust/src/doc/trpl
2015-01-27 22:24:03 +05:30
..
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 Auto merge of #21078 - js-ojus:master, r=steveklabnik 2015-01-22 16:50:17 +00:00
comments.md Cosmetic updates to TRPL text 2015-01-10 23:11:26 +01:00
compound-data-types.md Rollup merge of #21048 - aroben:patch-1, r=steveklabnik 2015-01-21 02:16:47 +09:00
conclusion.md Update Conclusion of The Rust Programming Language 2015-01-09 19:48:27 +01:00
crates-and-modules.md Rollup merge of #21450 - alfie:book2, r=steveklabnik 2015-01-22 18:09:58 -05:00
documentation.md Move rustdoc.md into the book 2015-01-21 14:59:25 -05: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 Small fix in TRPL 3.9 2015-01-20 11:36:29 -05:00
guessing-game.md Fallout of io => old_io 2015-01-26 16:01:16 -08: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 doc: Remove extra whitespace in the middle of lines to provide alignment 2015-01-17 10:51:53 -05: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 more-strings.md: repaired links to API 2015-01-25 15:20:49 +01:00
ownership.md Add example for Lifetime Elision with two inputs 2015-01-25 01:24:41 -07: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 quick formatting fix 2015-01-18 15:28:12 -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 Fallout of io => old_io 2015-01-26 16:01:16 -08:00
strings.md Standardize punctuation & formatting of TRPL 2015-01-08 17:15:26 -08:00
SUMMARY.md Rollup merge of #21479 - steveklabnik:rustdoc_to_book, r=alexcrichton 2015-01-22 18:09:59 -05:00
testing.md Fix up titles of TRPL chapters 2015-01-17 10:51:07 -05:00
threads.md Fix type inference problems in tests and docs 2015-01-21 11:16:00 -08:00
traits.md Intpocalypse, book edition. 2015-01-17 10:51:07 -05:00
unsafe.md remove NoSendItem and NoSyncItem 2015-01-21 00:45:35 -05: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!