Learning Rust: Day 1
•1 min read
I've decided to finally pick up Rust. The borrow checker is scary, but the safety guarantees are appealing.
Hello World
fn main() {
println!("Hello, world!");
}
So far, so good. The tooling (Cargo) is fantastic.