diff options
| author | Cody <cody@codyq.dev> | 2023-06-27 04:03:26 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-06-27 04:03:26 -0500 |
| commit | 2cf498f7bf1311ebca156315a0c9ac25b0addef5 (patch) | |
| tree | ad216a67c0339f14908c98e744c9b617ff8bc0e2 /std/stdlib.sloth | |
| parent | 5d958f8af1646f9cb4763bb2f020bb2e6de8a3c0 (diff) | |
| download | sloth-2cf498f7bf1311ebca156315a0c9ac25b0addef5.tar.gz | |
Working conways game of life
Diffstat (limited to 'std/stdlib.sloth')
| -rw-r--r-- | std/stdlib.sloth | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/std/stdlib.sloth b/std/stdlib.sloth index 913fd0b..eb6000d 100644 --- a/std/stdlib.sloth +++ b/std/stdlib.sloth @@ -5,8 +5,6 @@ foreign fn slen(str: String) Int; 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) Int; +#foreign fn istr(x: Int) Int; -fn termclear() Void { - print("\x1b[2J\x1b[H"); -} +foreign fn termclear() Void; |
