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

[REBOL] Re: Why I don't need get-word here!

From: rotenca:telvia:it at: 3-Nov-2003 15:05

Hi Gabriele,
> while > word > does not always yield the same result as using GET. In the recent > versions of REBOL the only datatypes for which there is a > difference are the ones enclosed in the ANY-FUNCTION! pseudo type.
It seems to me that also the lit-word! datatypehas the same behaviour:
>> a: to-lit-word 's
== 's
>> type? a
== word!
>> type? :a
== lit-word!
>> type? get 'a
== lit-word! --- Ciao Romano