fn main() -> i64 { let hello: str = "Hello, "; let world: str = "World!"; let msg: str = hello + world; print_str(msg); return 0; }