ReefVM/examples/counter.reef
Chris Wanstrath d1669f209b debugger
2025-10-06 15:53:19 -07:00

24 lines
215 B
Plaintext

; Simple counter example
PUSH 0
STORE counter
PUSH 10
STORE max
.loop:
LOAD counter
LOAD max
LT
JUMP_IF_FALSE .end
LOAD counter
PUSH 1
ADD
STORE counter
JUMP .loop
.end:
LOAD counter
HALT