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: 7b8fe8855c839a99704a46e3c6ce26aa922a36e4 (
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; };