Files
ValueScript/concept-code/eg2.vsm
2023-03-07 09:11:00 +11:00

10 lines
139 B
Plaintext

export @main {}
@main = function() {
mov 37 %x
bind @foo [%x] %foo
call %foo [] %return
}
@foo = function(%x) {
op+ %x 5 %return
}