fn main() -> i64 { let name = "World"; let greeting = "Hello, \(name)!"; print_str(greeting); // "Hello, World!" return 0; }