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

[REBOL] Re: How to transform a string into a word and get its associated value

From: th72::dds::nl at: 22-Jun-2005 11:19

I think it's very easy, if i understand you right. Use this for example:
>> test: 99
== 99
>> name: "test"
== "test"
>> name
== "test"
>> make word! name
== test
>> do make word! name
== 99 Tim make word! "test" Gerard Cote wrote: