[REBOL] Re: Crippled reflection in Rebol?
From: Izkata::Comcast::net at: 26-Mar-2007 16:08
Here you go:>> value? to-get-word "/"== true>> type? to-word "/"== word!>> X: "purple"== "purple">> type? get to-word X== tuple! And, of course, the to-* functions can have interesting results sometimes - such as, a word! with a space in it:>> to-word "foo bar"== foo bar>> type? to-word "foo bar"== word! On Mon, 2007-03-26 at 22:54 +0200, Arie van Wingerden wrote: