From da89b3f6cdf17dbaeba9aa25e22f1b8313f97536 Mon Sep 17 00:00:00 2001 From: Cody Date: Wed, 28 Jun 2023 14:28:43 -0500 Subject: Cursor hiding in conways game of life --- std/stdio.sloth | 3 +++ 1 file changed, 3 insertions(+) (limited to 'std/stdio.sloth') diff --git a/std/stdio.sloth b/std/stdio.sloth index c28d474..77c9af0 100644 --- a/std/stdio.sloth +++ b/std/stdio.sloth @@ -1,6 +1,9 @@ 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"); -- cgit v1.2.3