aboutsummaryrefslogtreecommitdiff
path: root/std/stdio.sloth
blob: 37a2d079b4a1d2e4aee3e89a93a9e4ff12336a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
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");
}