rust hello world

Hello world The basic hello world in Rust. fn main() { // Statements here are executed when the compiled binary is called. // Print text to the console. println!("Hello World!"); } Backlinks rustup

February 25, 2024 · 1 min · Kristian Alexander P

rustup

Install rust Get the installer script here for linux, but also support other os’es like windows. In archlinux, using rustup is the recommended way to install if you intend to program anything in Rust.

February 25, 2024 · 1 min · Kristian Alexander P