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
/
array_element_assignment.elna
blob: d1f00d657ec20bcda8ba4740ed1f90fef8bffb9c (
plain
)
1
2
3
4
5
6
proc main() { var a: array[1] of int; a[0] := 5; printi(a[0]); }