forked from defunkt/ReefVM
20 lines
282 B
Plaintext
20 lines
282 B
Plaintext
; Mixed variadic and named arguments
|
|
; Function takes one fixed param, variadic positional, and named
|
|
MAKE_FUNCTION (x ...rest @named) .fn_body
|
|
PUSH 1
|
|
PUSH 2
|
|
PUSH 3
|
|
PUSH 'name'
|
|
PUSH 'Bob'
|
|
PUSH 3
|
|
PUSH 1
|
|
CALL
|
|
HALT
|
|
|
|
.fn_body:
|
|
LOAD x
|
|
LOAD rest
|
|
LOAD named
|
|
MAKE_ARRAY #3
|
|
RETURN
|