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