]> git.lizzy.rs Git - rust.git/blob - src/doc/trpl/SUMMARY.md
Move rustdoc.md into the book
[rust.git] / src / doc / trpl / SUMMARY.md
1 # Summary
2
3 * [I: The Basics](basic.md)
4     * [Installing Rust](installing-rust.md)
5     * [Hello, world!](hello-world.md)
6     * [Hello, Cargo!](hello-cargo.md)
7     * [Variable Bindings](variable-bindings.md)
8     * [If](if.md)
9     * [Functions](functions.md)
10     * [Comments](comments.md)
11     * [Compound Data Types](compound-data-types.md)
12     * [Match](match.md)
13     * [Looping](looping.md)
14     * [Strings](strings.md)
15     * [Arrays, Vectors, and Slices](arrays-vectors-and-slices.md)
16     * [Standard Input](standard-input.md)
17     * [Guessing Game](guessing-game.md)
18 * [II: Intermediate Rust](intermediate.md)
19     * [Crates and Modules](crates-and-modules.md)
20     * [Testing](testing.md)
21     * [Pointers](pointers.md)
22     * [Ownership](ownership.md)
23     * [Patterns](patterns.md)
24     * [Method Syntax](method-syntax.md)
25     * [Closures](closures.md)
26     * [Iterators](iterators.md)
27     * [Generics](generics.md)
28     * [Traits](traits.md)
29     * [Threads](threads.md)
30     * [Error Handling](error-handling.md)
31     * [Documentation](documentation.md)
32 * [III: Advanced Topics](advanced.md)
33     * [FFI](ffi.md)
34     * [Unsafe Code](unsafe.md)
35     * [Macros](macros.md)
36     * [Compiler Plugins](plugins.md)
37 * [Conclusion](conclusion.md)