5 lines
74 B
Text
5 lines
74 B
Text
prog: [x * 2]
|
|
fn: func [x] [do bind prog 'x]
|
|
a: fn 2
|
|
b: fn 4
|
|
subtract b a
|