//

#[builtin(Print)]
fn print(msg: string) {
    "hello" + 0    
}

fn main() {
    print("hello world!\n");
}