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_in_proc.elna
blob: 244c55114291252a600bc9423845f57b387a1dbc (
plain
)
1
2
3
4
5
6
7
8
proc print2(a: int, b: int) { printi(a); printi(b); } proc main() { print2(14, 8); }