11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
|
|
Test define/let
|
||
|
|
* function with single parameter is o.k.
|
||
|
|
* function with two parameters leaks memory
|
||
|
|
|
||
|
|
.control
|
||
|
|
define myfcn(x,y) (y + x + 1)
|
||
|
|
let nn = myfcn(2,3)
|
||
|
|
.endc
|
||
|
|
|
||
|
|
.end
|