aboutsummaryrefslogtreecommitdiff
path: root/std/stdio.sloth
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-07-20 18:13:34 -0500
committerCody <cody@codyq.dev>2023-07-20 18:13:34 -0500
commit1219f5ed8aed0bcb6a416a194fce70f0a290309d (patch)
tree5759c263bc626d288cb69434d1f46e20af49f2de /std/stdio.sloth
parent7c53e65cad365ec112d2ec1bd9c3091dbed05720 (diff)
parent52d6bc8533616dd642c96f8b6e72f459e1b4d465 (diff)
downloadsloth-1219f5ed8aed0bcb6a416a194fce70f0a290309d.tar.gz
Merge branch 'master' of github.com:slothlang/slothlang
Diffstat (limited to 'std/stdio.sloth')
-rw-r--r--std/stdio.sloth6
1 files changed, 0 insertions, 6 deletions
diff --git a/std/stdio.sloth b/std/stdio.sloth
index 37a2d07..978bcfb 100644
--- a/std/stdio.sloth
+++ b/std/stdio.sloth
@@ -1,9 +1,3 @@
-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");