mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
10 lines
139 B
Plaintext
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
|
|
}
|