rusts/hello.rs
2026-09-09 14:04:38 +02:00

8 lines
98 B
Rust

fn main()
{
let answer = 43;
println!("hello {}", answer);
assert_eq!(answer, 42);
}