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

[REBOL] Re: Composing a function from string

From: ptretter::charter::net at: 1-Dec-2001 11:47

'Do can perform that.
>> hold: "myfunc: func [x][print x]"
== "myfunc: func [x][print x]"
>> do hold >> myfunc "hello"
hello
>>
Paul Tretter