Rust
Installation
brew install rustup-init
rustup-initrustup update
rustup component add rls-preview rust-analysis rust-srcHello World
// hello.rs
fn main() {
println!("Hello World!");
}rustc hello.rs
./helloPackaging etc
Last updated