Rust is a modern systems programming language focused on memory safety, concurrency, and performance. It’s a strong choice for CLI tools, services, and low-level components where safety and speed matter.
fn main() {
println!("Hello, World!");
}
Run:
rustc hello.rs
./hello