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: Izkata:Comcast at: 21-Jun-2005 17:46

>> A: 250
== 250
>> B: "A"
== "A"
>> get in system/words to-word B ;one-line way to do it
== 250
>> C: to-word B ;two-line way to do it
== A
>> system/words/:C
== 250 You're using a string, that's to problem.. But I thank you for asking in that way, I needed this very thing for something of my own and couldn't figure it out before now! -Izzy Boy