|
6 | 6 |
|
7 | 7 | This is a tutorial for the Rust programming language. It assumes the
|
8 | 8 | reader is familiar with the basic concepts of programming, and has
|
9 |
| -programmed in one or more other languages before. The tutorial covers |
| 9 | +programmed in one or more other languages before. It will often make |
| 10 | +comparisons to other languages in the C family. The tutorial covers |
10 | 11 | the whole language, though not with the depth and precision of the
|
11 | 12 | [language reference](rust.html).
|
12 | 13 |
|
13 |
| -## Disclaimer |
14 |
| - |
15 |
| -Rust is a language under development. The general flavor of the |
16 |
| -language has settled, but details will continue to change as it is |
17 |
| -further refined. Nothing in this tutorial is final, and though we try |
18 |
| -to keep it updated, it is possible that the text occasionally does not |
19 |
| -reflect the actual state of the language. |
20 |
| - |
21 | 14 | ## First Impressions
|
22 | 15 |
|
23 | 16 | Though syntax is something you get used to, an initial encounter with
|
@@ -58,6 +51,14 @@ fragments of programs that don't compile on their own. To try them
|
58 | 51 | out, you might have to wrap them in `fn main() { ... }`, and make sure
|
59 | 52 | they don't contain references to things that aren't actually defined.
|
60 | 53 |
|
| 54 | +## Disclaimer |
| 55 | + |
| 56 | +Rust is a language under development. The general flavor of the |
| 57 | +language has settled, but details will continue to change as it is |
| 58 | +further refined. Nothing in this tutorial is final, and though we try |
| 59 | +to keep it updated, it is possible that the text occasionally does not |
| 60 | +reflect the actual state of the language. |
| 61 | + |
61 | 62 | # Getting started
|
62 | 63 |
|
63 | 64 | ## Installation
|
|
0 commit comments