add examples
[webi-installers/.git] / rustlang / rustlang.bash
1 #!/bin/bash
2
3 # title: Rust
4 # homepage: https://rust-lang.org
5 # tagline: The Rust Toolchain
6 # description: |
7 #   A language empowering everyone to build reliable and efficient software.
8 # examples: |
9 #   ```bash
10 #   cargo install ripgrep
11 #   ```
12 #   <br/>
13 #   ```bash
14 #   cargo new hello --bin
15 #   cargo build --release
16 #   ./hello
17 #   > "Hello, world!"
18 #   ```
19
20
21 # Straight from https://rustup.rs/
22 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh