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

[REBOL] Re: Crippled reflection in Rebol?

From: chris-ross::gill::com at: 26-Mar-2007 22:34

On Mar 26, 2007, at 4:08 PM, Izkata wrote:
>> value? to-get-word "/"
== true
>> type? to-word "/"
== word!
>> X: "purple"
== "purple"
>> type? get to-word X
== tuple! -- You can also use get/any to avoid a no-value error:
>> type? get/any to-word "/"
== op!
>> type? get/any to-word "purple"
== tuple!
>> type? get/any to-word "foo"
== unset! - Chris