ReefVM/examples/simple-function.reef
2025-10-05 22:24:43 -07:00

15 lines
155 B
Plaintext

; Simple function that adds two numbers
MAKE_FUNCTION (a b) .add_body
PUSH 10
PUSH 20
PUSH 2
PUSH 0
CALL
HALT
.add_body:
LOAD a
LOAD b
ADD
RETURN