root/trunk/orca/tests/working/set-path1.r

Revision 1, 250 bytes (checked in by krobillard, 3 years ago)

Import orca & thune.

Line 
1REBOL [
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
7a: [1 2]
8
9e: does [
10    b: a
11    a: [3 4]
12    44
13]
14
15a/1: e
16probe a
17probe b
18
19
20;[3 4]
21;[
22;    44 2]
Note: See TracBrowser for help on using the browser.