index
:
elna
cpp
haskell
master
Elna programming language compiles simple mathematical operations to RISC-V code.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
vm
/
print_after_loop.elna
blob: 3fd917563de468fd295e3c5c04516e911415dbbf (
plain
)
1
2
3
4
5
6
7
8
9
proc main() { var x: int; x := 0; while (x < 2) { x := x + 1; } printi(x); }