An open API service indexing awesome lists of open source software.

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

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
```