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

[REBOL] Re: dictionaries

From: greggirwin:mindspring at: 17-Feb-2006 9:52

Hi Cavva, C> But, if I want to use different word defined in different context, C> i must write something like: C> print bind [a] ctx1 C> print bind [b] ctx2 C> print bind [c] ctx3 C> Am I wrong? You can use path notation print [ctx1/a ctx2/b ctx3/c] You can also use IN to get a word bound to a context; and gurus do all kinds of tricky stuff when it comes to binding. REBOL has very few limits on how you can make things work. -- Gregg