Files
vim-ale/rustlang/README.md
2020-07-09 11:46:17 +00:00

46 lines
805 B
Markdown

---
title: Rust
homepage: https://rust-lang.org
tagline: |
Rust: Empowering everyone to build reliable and efficient software.
---
## Updating rustlang
```bash
rustup update
```
You can `rustup use x.y.z` for a specific version or toolchain.
## Cheat Sheet
> Rust is what C++ and D were trying to do, but didn't. It's a modern, safe,
> high-performance language, which also just so happens to be used to build all
> of your favorite CLI tools, such as:
- rg (ripgrep, modern grep)
- fd (modern find)
- sd (modern sed)
- lsd (modern ls)
- bat (modern cat)
### Install rust from rust.rs
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
### Hello World
```bash
cargo install ripgrep
```
```bash
cargo new hello --bin
cargo build --release
./hello
> "Hello, world!"
```