Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steveklabnik/trpl
don't worry about it
https://github.com/steveklabnik/trpl
Last synced: 23 days ago
JSON representation
don't worry about it
- Host: GitHub
- URL: https://github.com/steveklabnik/trpl
- Owner: steveklabnik
- Created: 2015-03-26T18:22:07.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-27T23:29:36.000Z (almost 10 years ago)
- Last Synced: 2024-11-01T01:24:39.301Z (2 months ago)
- Size: 223 KB
- Stars: 20
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
% 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.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!