root/trunk/orca/tests/working/set-path1.r
| Revision 1, 250 bytes (checked in by krobillard, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | REBOL [ |
| 2 | Purpose: {Shows set-path evalutates the path and stores the value to be |
| 3 | set on the stack before the next value is fetched. |
| 4 | } |
| 5 | ] |
| 6 | |
| 7 | a: [1 2] |
| 8 | |
| 9 | e: does [ |
| 10 | b: a |
| 11 | a: [3 4] |
| 12 | 44 |
| 13 | ] |
| 14 | |
| 15 | a/1: e |
| 16 | probe a |
| 17 | probe b |
| 18 | |
| 19 | |
| 20 | ;[3 4] |
| 21 | ;[ |
| 22 | ; 44 2] |
Note: See TracBrowser
for help on using the browser.
