rust/src/doc/trpl
Manish Goregaokar 9eed8b1c27 Rollup merge of #22410 - Reignbeaux:master, r=steveklabnik
I just stumbled on a typo and fixed it.
2015-02-17 17:33:19 +05:30
..
advanced.md
arrays-vectors-and-slices.md Note that Vec<T> is heap allocated. 2015-02-13 18:49:21 -05:00
basic.md
closures.md
comments.md
compound-data-types.md Rollup merge of #22410 - Reignbeaux:master, r=steveklabnik 2015-02-17 17:33:19 +05:30
conclusion.md
concurrency.md Normalize range syntax used in concurrency.md 2015-02-14 16:28:18 +05:30
crates-and-modules.md Documentation Fixes 2015-02-14 16:55:53 +01:00
documentation.md Rollup merge of #22027 - iblech:patch-1, r=steveklabnik 2015-02-17 15:41:30 +05:30
error-handling.md
ffi.md Fix grammar 2015-02-16 03:56:52 +05:30
functions.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
generics.md
glossary.md improve text 2015-02-15 20:41:44 +01:00
guessing-game.md
hello-cargo.md
hello-world.md book: link to a file with configs links 2015-02-15 14:38:47 +03:00
if.md
installing-rust.md Update uninstall instructions 2015-02-12 20:36:20 -08:00
intermediate.md
iterators.md Remove use of range() in iterator docs. 2015-02-16 04:53:21 -05:00
looping.md
macros.md
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
plugins.md Warn when linking a plugin into a non-plugin crate 2015-02-12 12:44:31 -08:00
pointers.md
README.md
standard-input.md
static-and-dynamic-dispatch.md
strings.md
SUMMARY.md Rollup merge of #22377 - thiagooak:book-glossary, r=steveklabnik 2015-02-17 06:23:38 +05:30
testing.md
traits.md
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!