blob: 0839ec4cc5ece84d5cf01ffde1408e2e7fc421ee [file] [log] [blame] [edit]
fn print_hello() {
let name = "world";
println!("Hello, {}!", name);
}
fn main() {
print_hello();
}