language: add unary plus & minus, post increment & decrement operators, non-newline print builtin. fix block comments

This commit is contained in:
2023-09-11 14:13:08 +10:00
parent f6d2fc5165
commit 36b574bf5b
18 changed files with 235 additions and 32 deletions

View File

@ -1,2 +1,5 @@
export func println(messages...)
export func print(values...)
native internal "print"
export func println(values...)
native internal "println"