JanetDocsPlaygroundI'm feeling luckyGitHub sign in
# see https://janet-lang.org/docs/abstract_machine.html (def plus10 (asm '{ :arity 1 :bytecode @[(ldi 1 10) # $1 = 10 (add 2 0 1) # $2 = $0 + $1 (ret 2)]})) # return $2 (plus10 1) # -> 11