index
:
interpreter
this commit
master
Simple interpreter written in Zig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
examples
/
9.src
blob: d21ae714249bad1011c42cf7ed5d85f76e02e710 (
plain
) (
blame
)
1
2
3
4
5
6
7
8
9
10
let main = () => { let i = true; if i { print(i); return 1; }; return 0; };