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

[REBOL] Re: Path evaluation

From: lmecir:mbox:vol:cz at: 2-May-2003 8:54

Hi Karl, you wrote: obj: context [ var: 22 ] p: 'obj/var
> It seems something simple like 'do p' should work.
If you want to use the "basic" 2.5.5 method, you can do as follows: do reduce [:p] ; == 22 this version will work even in old interpreter versions, because it uses the get-word version of 'p. HTH -Ladislav