RosettaCodeData/Task/Runtime-evaluation-In-an-environment/REBOL/runtime-evaluation-in-an-environment.rebol
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

5 lines
74 B
Text

prog: [x * 2]
fn: func [x] [do bind prog 'x]
a: fn 2
b: fn 4
subtract b a