root/trunk/orca/tests/working/func_closure2.r

Revision 140, 194 bytes (checked in by krobillard, 3 years ago)

Orca - Function arguments are now copied to the function context unless
recursion is in progress.

Line 
1rebol []
2
3relation: func [value [integer!] /local f-value]
4[
5    f-value: 2 * value
6    return [value f-value]
7]
8
9r1: relation 2
10probe reduce r1
11
12r2: relation 4
13probe reduce r2
14
15probe reduce r1
Note: See TracBrowser for help on using the browser.