Tag: d
Poster merket med «d»:
How big is "Hello, world?"
in
Technology and society
by
harald
Rust
I accidentally got an extra day off from work, so then I figured I could have a go at some initial dabblings in Rust. I haven’t had time to play with this language at all yet, but skimming through the tutorial online a while ago got me interested. So off I went and wrote the mandatory intro-program: “Hello, world!”
fn main() {
println!("Hello, world!");
}