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

[REBOL] Re: Help With Query

From: SunandaDH:aol at: 19-Feb-2004 17:46

Welcome to REBOL, Ron. It's a lot of fun. Once you get your head around some of the strangeness, it all starts to make more sense than you can imagine -- or, occasionally, explain. Ron:
> Have I misunderstood what should be happening?
What Ammon says. Though I still find these sorts of things confusing even after a couple of years. The only way I know to make your code work is this: root: [sub1 [sub2 [ word "a word at the end of the path" num 55 ] ] ] path: 'root/sub1/sub2/word do reduce [path] == "a word at the end of the path" Enjoy playing! Sunanda.