1 2 3 4 5 6 7 8 9
foreign fn print(str: String) Void; foreign fn readln() String; fn println(str: String) Void { print(str); print("\n"); }