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