aboutsummaryrefslogtreecommitdiff
path: root/std/stdio.sloth
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2023-07-17 23:00:30 -0500
committerNic Gaffney <gaffney_nic@protonmail.com>2023-07-17 23:00:30 -0500
commit52d6bc8533616dd642c96f8b6e72f459e1b4d465 (patch)
tree31f3dc1f3378151e57f7bc37fa2b4e22ab757661 /std/stdio.sloth
parentee2133a13d61b3b3fb8fcf88f9c9781debd77d9e (diff)
downloadsloth-52d6bc8533616dd642c96f8b6e72f459e1b4d465.tar.gz
Standard lib rework
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");