aboutsummaryrefslogtreecommitdiff
path: root/std/stdlib.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/stdlib.sloth
parentee2133a13d61b3b3fb8fcf88f9c9781debd77d9e (diff)
downloadsloth-52d6bc8533616dd642c96f8b6e72f459e1b4d465.tar.gz
Standard lib rework
Diffstat (limited to 'std/stdlib.sloth')
-rw-r--r--std/stdlib.sloth11
1 files changed, 0 insertions, 11 deletions
diff --git a/std/stdlib.sloth b/std/stdlib.sloth
deleted file mode 100644
index 48a92bd..0000000
--- a/std/stdlib.sloth
+++ /dev/null
@@ -1,11 +0,0 @@
-foreign fn wait(x: Int) Int;
-foreign fn print(str: String) Void;
-foreign fn slen(str: String) Int;
-# foreign fn charAt(str: String) Char;
-foreign fn parse_int(str: String) Int;
-foreign fn termpos(x: Int, y: Int);
-foreign fn as_int(x: Float) Int;
-foreign fn istr(x: Int) String;
-foreign fn system(cmd: String) Int;
-foreign fn sequals(a: String, b: String) Bool;
-foreign fn termclear() Void;