mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
907c3cad09
Recursively.
8 lines
136 B
Plaintext
8 lines
136 B
Plaintext
// to install rust:
|
|
// curl https://sh.rustup.rs -sSf | sh
|
|
// to compile:
|
|
// rustc main.rs
|
|
fn main() {
|
|
println!("Hello, world!");
|
|
}
|