September-october commit

- manual parser
- stl refinements
- all language constructs are now Send
This commit is contained in:
2023-10-11 18:27:50 +01:00
parent 56679dcc01
commit 86e520e8b8
127 changed files with 1666 additions and 1872 deletions

View File

@@ -2,7 +2,7 @@ import std::panic
import system::io
import system::async::yield
export const print := \text.\ok. (
export const print := \text. \ok. (
io::write_str io::stdout text
(io::flush io::stdout
ok
@@ -13,7 +13,7 @@ export const print := \text.\ok. (
\_. yield
)
export const println := \line.\ok. (
export const println := \line. \ok. (
print (line ++ "\n") ok
)