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
/
two_variables.elna
blob: c129efa822a15d936ad3f584015120d9aaf03252 (
plain
)
1
2
3
4
5
6
7
8
9
10
proc main() { var i: int; var j: int; i := 58; j := 28; printi(i); printi(j); }