2014-12-02 08:20:48 -06:00
|
|
|
% The Rust Programming Language
|
|
|
|
|
|
|
|
Welcome! This book will teach you about [the Rust Programming
|
|
|
|
Language](http://www.rust-lang.org/). 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.
|
|
|
|
|
2015-01-12 09:59:21 -06:00
|
|
|
<h2 class="section-header"><a href="basic.html">Basics</a></h2>
|
2014-12-02 08:20:48 -06:00
|
|
|
|
|
|
|
This section is a linear introduction to the basic syntax and semantics of
|
2015-03-26 18:35:50 -05:00
|
|
|
Rust. It has individual sections on each part of Rust's syntax.
|
2014-12-02 08:20:48 -06:00
|
|
|
|
|
|
|
After reading "Basics," you will have a good foundation to learn more about
|
|
|
|
Rust, and can write very simple programs.
|
|
|
|
|
2015-01-12 09:59:21 -06:00
|
|
|
<h2 class="section-header"><a href="intermediate.html">Intermediate</a></h2>
|
2014-12-02 08:20:48 -06:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2015-01-12 09:59:21 -06:00
|
|
|
<h2 class="section-header"><a href="advanced.html">Advanced</a></h2>
|
2014-12-02 08:20:48 -06:00
|
|
|
|
2015-01-10 00:35:18 -06:00
|
|
|
In a similar fashion to "Intermediate," this section is full of individual,
|
2014-12-02 08:20:48 -06:00
|
|
|
deep-dive chapters, which stand alone and can be read in any order. These
|
2015-04-05 01:56:16 -05:00
|
|
|
chapters focus on Rust's most complex features.
|
2014-12-02 08:20:48 -06:00
|
|
|
|
2015-03-25 17:35:51 -05:00
|
|
|
<h2 class="section-header"><a href="unstable.html">Unstable</a></h2>
|
|
|
|
|
|
|
|
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.
|