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

[REBOL] Re: Context misery

From: ptretter:charter at: 5-Jun-2001 10:27

Not sure I know exactly what you want to do but here is my approach I use for assignment of DCC ports in an irc script I made: REBOL [] myfunc: func ["Creates a dynamic variable and sets to a value in /local temp" string [string!] ; string that will contain the new 'word to be assigned /local value temp ][ value: [1 2 3] temp: make set-word! string mold temp :value ]