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

[REBOL] Re: Parsing comment

From: rotenca:telvia:it at: 25-Sep-2002 20:36

Hi Gabriele,
> print (a+b) > > As Ladislav said, it doesn't. It is just a word! followed by a > paren! that contains three word!s
I am not so sure. :-) This is true only if the standard function Load has been called on the original string, but Rebol does not require it: x: to-word "print (a + b)" ;== print (a + b) t? x ;== word! mold x; == "print (a + b)" and it can be used almost like all other words. --- Ciao Romano