https://github.com/jermspeaks/rust-tutorial
A tutorial from Rust book
https://github.com/jermspeaks/rust-tutorial
rust tutorial
Last synced: 10 months ago
JSON representation
A tutorial from Rust book
- Host: GitHub
- URL: https://github.com/jermspeaks/rust-tutorial
- Owner: jermspeaks
- Created: 2018-01-11T04:26:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-16T19:19:01.000Z (about 8 years ago)
- Last Synced: 2025-02-05T19:33:34.064Z (12 months ago)
- Topics: rust, tutorial
- Language: Rust
- Size: 4.24 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Tutorial
This project follows loosely the [rust language book](https://doc.rust-lang.org/book/), first and second editions.
This readme contains some additional notes to start using rust
## Installing Rust
```bash
$ curl https://sh.rustup.rs -sSf | sh
```
## Cargo
### Commands
* `cargo build` - Compiles project to executable
* `cargo run` - Compiles and executes project
* `cargo new project_name --bin` - Creates new project and executable
## Uninstalling
```bash
$ rustup self uninstall
```