From bf647e430e3a3642c8199dc81a411d5e1586cabb Mon Sep 17 00:00:00 2001 From: nic-gaffney Date: Sun, 25 Jun 2023 18:55:58 -0500 Subject: Standard library beginnings --- std/stdio.sloth | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 std/stdio.sloth (limited to 'std/stdio.sloth') diff --git a/std/stdio.sloth b/std/stdio.sloth new file mode 100644 index 0000000..c28d474 --- /dev/null +++ b/std/stdio.sloth @@ -0,0 +1,9 @@ +foreign fn print(str: String) Void; +foreign fn readln() String; + +fn println(str: String) Void { + print(str); + print("\n"); +} + + -- cgit v1.2.3