Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Help With Query

From: maximo:meteorstudios at: 19-Feb-2004 17:59

> -----Original Message----- > From: [RJBywater--aol--com] [mailto:[RJBywater--aol--com]] > Hello,
welcome Ron!!
> I am a complete newbie with Rebol having just recently
you'll find this list very welcoming! you have it almost right!
> given the following code > > root: [sub1 [sub2 [ > word "a word at the end of the path" > num 55 > ] ] ] > path: 'root/sub1/sub2/word
use path: root/sub1/sub2/word the ' character is telling rebol not to interpret the path you gave it, just to store it. in fact this is usefull, if you want to use the path later on, but do not have the data handy yet! -MAx