index
:
elna
assembly
cpp
haskell
Elna programming language compiles simple mathematical operations to RISC-V code.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
testsuite
/
runnable
/
define_multiple_local_variables.elna
blob: 51b99ac56b167fbfb1819a214120d7598d2021f2 (
plain
)
1
2
3
4
5
6
7
8
proc f(): Bool var a, b: Int := 5 return a = 5 & b = 5 begin assert(f()) end.