diff options
Diffstat (limited to 'std')
| -rw-r--r-- | std/stdlib.sloth | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/stdlib.sloth b/std/stdlib.sloth index d7ddeff..cc404f6 100644 --- a/std/stdlib.sloth +++ b/std/stdlib.sloth @@ -1,10 +1,10 @@ foreign fn wait(x: Int) Void; foreign fn print(str: String) Void; foreign fn slen(str: String) Int; -foreign fn charAt(str: String) Char; +# foreign fn charAt(str: String) Char; foreign fn parse_int(str: String) Int; -fn termpos(x: int, y: int) Void { +fn termpos(x: Int, y: Int) Void { print("\x1b["); print(x); print(";"); |
