mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 23:48:02 -05:00
9 lines
123 B
Plaintext
9 lines
123 B
Plaintext
@main = function() {
|
|
mov 37 %x
|
|
bind @foo [%x] %foo
|
|
call %foo [] %return
|
|
}
|
|
@foo = function(%x) {
|
|
op+ %x 5 %return
|
|
}
|