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

[REBOL] Re: variable variable

From: carl:rebol at: 1-Jun-2001 2:36

Judging from the replies, we're not sure what your question is. Use: item: 'tool The variable ITEM now refers to the variable TOOL. To get its value: print get item Example: tool: "hammer" item: 'tool print get item == hammer tool: "chisel" print get item == chisel Does that answer your question?