aboutsummaryrefslogtreecommitdiff
path: root/std/stdio.sloth
blob: 77c9af0ce17ab2493fe32bf010e5807d26810c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
foreign fn print(str: String) Void;
foreign fn readln() String;

foreign fn curshide();
foreign fn cursshow();

fn println(str: String) Void {
	print(str);
	print("\n");
}