Prints to output, with a newline.
Output printing is performed by calling the println() function, this is just a convenience wrapper around it which allows for formatting.
println()
let who = "World"; println!("Hello {}!", who);