extended name removed, dereference added, unary operators removed, fixes

This commit is contained in:
ProgramSnail 2023-05-13 13:11:12 +03:00
parent e62144feac
commit 79bd30c1ee
20 changed files with 101 additions and 274 deletions

View file

@ -1,7 +1,12 @@
decl print : String -> Unit
decl ( -- ) : Int -> Int -> Int_0
decl func : String -> Int
def func : s = {
; print: s
return 5
}
exec main {
for i in 0--10 do func: "abacaba"
}