[go: up one dir, main page]

Skip to content

Latest commit

 

History

History

Rust

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Rust

Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety.

Installation

For installation it's advised to use rustup as it will (among other things) allow you to switch between versions of Rust without having to download anything additional.

brew install rustup-init

Use rustup to install the Rust compiler (rustc) and the Rust package manager (cargo).

rustup-init

To verify you can run:

rustc --version

The official documentation on how to install Rust.