rust/src/doc/trpl
2015-03-23 17:13:38 -07:00
..
advanced-macros.md Add AST to the glossary 2015-03-20 10:55:51 -04:00
advanced.md
arrays-vectors-and-slices.md
basic.md
closures.md
comments.md
compound-data-types.md guide: Improvements to language covering enums 2015-03-21 05:32:26 +07:00
conclusion.md
concurrency.md rollup merge of #23598: brson/gate 2015-03-23 15:13:15 -07: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 Test fixes and rebase conflicts, round 2 2015-03-23 17:10:19 -07:00
error-handling.md
ffi.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
functions.md
generics.md
glossary.md Add AST to the glossary 2015-03-20 10:55:51 -04:00
hello-cargo.md
hello-world.md
if.md
installing-rust.md
intermediate.md
iterators.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
looping.md
macros.md
match.md
method-syntax.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
more-strings.md rollup merge of #23598: brson/gate 2015-03-23 15:13:15 -07:00
ownership.md
patterns.md
plugins.md
pointers.md Don't conflate regions and affine types 2015-03-23 14:47:14 -04:00
README.md
standard-input.md rollup merge of #23598: brson/gate 2015-03-23 15:13:15 -07:00
static-and-dynamic-dispatch.md
strings.md
SUMMARY.md Remove manual numbers from TRPL 2015-03-20 15:27:55 -04:00
testing.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
traits.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
unsafe.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
variable-bindings.md

% 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!