Rust
// Hello World!
fn main(){
prinln!("Hello World")
}
#Install
# Using brew
brew install rustup
rustup-init
cargo install cargo-binstall -q
# Checking Installed
rustup --version
>> rustup 1.28.2 (2025-04-28)
>> info: This is the version for the rustup toolchain manager, not the rustc compiler.
>> info: The currently active `rustc` version is `rustc 1.81.0 (eeb90cda1 2024-09-04)`
rustc --version
>> rustc 1.88.0 (6b00bc388 2025-06-23) (Homebrew)
cargo --version
>> cargo 1.88.0 (Homebrew)
# Using Native Install Script
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
#Reading
#Watching