bugfix dl
[webi-installers/.git] / rustlang / rustlang.bash
index 392356c7e0b24b980a30303b720a6f42b5c2259e..e95f17285aa44c1cf313c91c9d89603cfa958248 100644 (file)
@@ -5,6 +5,26 @@
 # tagline: The Rust Toolchain
 # description: |
 #   A language empowering everyone to build reliable and efficient software.
+#
+#   Rust is the modern language 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)
+# examples: |
+#   ```bash
+#   cargo install ripgrep
+#   ```
+#   <br/>
+#
+#   ```bash
+#   cargo new hello --bin
+#   cargo build --release
+#   ./hello
+#   > "Hello, world!"
+#   ```
+
 
 # Straight from https://rustup.rs/
 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh