rust/src/doc/trpl
Alex Crichton c608084ff5 rollup merge of #23598: brson/gate
Conflicts:
	src/compiletest/compiletest.rs
	src/libcollections/lib.rs
	src/librustc_back/lib.rs
	src/libserialize/lib.rs
	src/libstd/lib.rs
	src/libtest/lib.rs
	src/test/run-make/rustdoc-default-impl/foo.rs
	src/test/run-pass/env-home-dir.rs
2015-03-23 15:13:15 -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 Strip trailing whitespace 2015-03-15 11:25:43 -07:00
basic.md
closures.md Concurrency is now in the "Concurrency" chapter 2015-03-14 14:05:59 -06:00
comments.md Example -> Examples 2015-03-11 21:11:40 -04:00
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 rollup merge of #23598: brson/gate 2015-03-23 15:13:15 -07:00
error-handling.md Mention try macro in error chapter 2015-02-24 12:31:46 -05:00
ffi.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
functions.md Rename should_fail to should_panic in docs 2015-03-19 08:24:38 +05:30
generics.md
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
installing-rust.md Add note about local documentation installation 2015-03-11 13:45:55 -04:00
intermediate.md
iterators.md Add #![feature] attributes to doctests 2015-03-23 14:40:26 -07:00
looping.md Fix type inference problems in tests and docs 2015-01-21 11:16:00 -08:00
macros.md Rollup merge of #22635 - kmcallister:macros-chapter, r=steveklabnik 2015-02-25 10:27:03 +05:30
match.md Tiny typo changes (per discussion in pull request #22027) 2015-02-16 23:13:58 +01:00
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 Rollup merge of #22027 - iblech:patch-1, r=steveklabnik 2015-02-17 15:41:30 +05:30
patterns.md Replace all uses of &foo[] with &foo[..] en masse. 2015-02-18 17:36:03 -05:00
plugins.md Fix #23166. Get the Compiler Plugins example compiling again. 2015-03-07 22:58:28 -08:00
pointers.md Rollup merge of #23447 - kjpgit:kjp/pointerexample, r=steveklabnik 2015-03-20 12:43:12 +05:30
README.md
standard-input.md rollup merge of #23598: brson/gate 2015-03-23 15:13:15 -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 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 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!