5 lines
80 B
Text
5 lines
80 B
Text
|
|
@(define multiply (a b out))
|
||
|
|
@(bind out @(* a b))
|
||
|
|
@(end)
|
||
|
|
@(multiply 3 4 result)
|