rust/src/doc/trpl
Alex Crichton fd182f41dc rollup merge of #23933: kgv/kgv_fix
Fix example and some text for: `read_line` takes `&mut String` and return `Result` instead `IoResult`.

r? @steveklabnik
2015-04-01 13:22:12 -07:00
..
advanced-macros.md New section of the book: nightly rust 2015-03-26 11:42:45 -04:00
advanced.md Fix typo in documentation. 2015-01-09 22:35:18 -08:00
arrays-vectors-and-slices.md Remove about standard io chapter from the book (from arrays-vectors-and-slices chapter) 2015-03-29 23:26:31 +03:00
associated-types.md Fix some typos 2015-03-28 18:09:51 +03:00
basic.md book: there is no guessing game anymore, so remove references to it 2015-03-27 01:35:50 +02:00
benchmark-tests.md Move benchmark tests to unstable section 2015-03-31 19:02:32 -04:00
closures.md Re-write closures chapter 2015-04-01 15:21:03 -04:00
comments.md Example -> Examples 2015-03-11 21:11:40 -04:00
compound-data-types.md book: there is no guessing game anymore, so remove references to it 2015-03-27 01:35:50 +02:00
conclusion.md Update Conclusion of The Rust Programming Language 2015-01-09 19:48:27 +01:00
concurrency.md book: reword timer bit 2015-03-31 14:17:13 -06:00
crates-and-modules.md rollup merge of #23401: tshepang/crates-and-modules-doc-nits 2015-03-23 15:08:01 -07:00
documentation.md Auto merge of #23830 - petrochenkov:spellcheck, r=steveklabnik 2015-03-29 22:39:46 +00:00
error-handling.md Fix rust book error-handling.md for new std::io. 2015-04-01 09:37:19 +03:00
ffi.md rollup merge of #23741: alexcrichton/remove-int-uint 2015-03-27 10:10:05 -07:00
functions.md Rename should_fail to should_panic in docs 2015-03-19 08:24:38 +05:30
generics.md Small fix in TRPL 3.9 2015-01-20 11:36:29 -05:00
glossary.md Add AST to the glossary 2015-03-20 10:55:51 -04:00
hello-cargo.md Fixed several grammar errors and broke up very long line. 2015-03-12 17:00:35 -04: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
inline-assembly.md New section of the book: nightly rust 2015-03-26 11:42:45 -04:00
installing-rust.md Add the -s flag to the suggested rustup invocation 2015-03-13 09:31:50 +01:00
intermediate.md Fix dead links in the guide and reorganize 2015-01-08 10:27:03 -08:00
intrinsics.md New section of the book: nightly rust 2015-03-26 11:42:45 -04:00
iterators.md std: Clean out #[deprecated] APIs 2015-03-31 15:49:57 -07:00
lang-items.md Test fixes and rebase conflicts, round 1 2015-03-27 11:29:36 -07:00
link-args.md New section of the book: nightly rust 2015-03-26 11:42:45 -04:00
looping.md doc: change 0u32..10 to 0..10 2015-03-26 13:24:20 -06:00
macros.md std: Remove #[old_orphan_check] from PartialEq 2015-03-31 13:39:14 -07:00
match.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
method-syntax.md book: make Builder Pattern example more complete 2015-03-31 00:26:03 +02:00
more-strings.md Mass rename uint/int to usize/isize 2015-03-26 12:10:22 -07:00
no-stdlib.md Test fixes and rebase conflicts, round 1 2015-03-27 11:29:36 -07:00
ownership.md Fix spelling 2015-03-31 17:44:45 -04:00
patterns.md Feature gate *all* slice patterns. #23121 2015-03-27 12:50:49 -07:00
plugins.md New section of the book: nightly rust 2015-03-26 11:42:45 -04:00
pointers.md Update pointers.md 2015-03-24 21:46:09 -07:00
README.md rollup merge of #23764: tshepang/no-guessing-anymore 2015-03-27 10:07:50 -07:00
static-and-dynamic-dispatch.md Strip trailing whitespace 2015-03-15 11:25:43 -07:00
strings.md book: Minor clarifications about strings 2015-02-19 18:39:38 -08:00
SUMMARY.md Move benchmark tests to unstable section 2015-03-31 19:02:32 -04:00
testing.md Move benchmark tests to unstable section 2015-03-31 19:02:32 -04:00
tracing-macros.md Test fixes and rebase conflicts, round 1 2015-03-27 11:29:36 -07:00
traits.md Add description of + for multiple trait bounds 2015-03-31 19:45:09 -04:00
unsafe.md New section of the book: nightly rust 2015-03-26 11:42:45 -04:00
unstable.md Test fixes and rebase conflicts, round 1 2015-03-27 11:29:36 -07:00
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.

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,

Unstable

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.

This chapter contains things that are only available on the nightly channel of Rust.