foreign fn print(str: String) Void; foreign fn readln() String; foreign fn filer(path: String) String; foreign fn curshide(); foreign fn cursshow(); fn println(str: String) Void { print(str); print("\n"); }