type_check_visitor first iteration, value, execution_visitor started

This commit is contained in:
ProgramSnail 2023-05-07 19:52:35 +03:00
parent 173d50672a
commit 890bd90eba
22 changed files with 481 additions and 452 deletions

11
tests/test_code.lang Normal file
View file

@ -0,0 +1,11 @@
basic String
basic Int
basic Unit
decl print : String -> Unit
decl func : String -> Int
def func : s = {
; print: s
return 5
}