Re: [Vala] Execute a function by name in Genie

2010-07-04 Thread Phil Housley
On 3 July 2010 18:50, Andrew rugby...@gmail.com wrote: Let's say I have the following code with the pseudo-function 'eval' : --- def doSomething(arg1:string)        print arg1 init        eval(doSomething('Hello World!')) --- How do I do the 'eval' pseudo-function in Genie?

Re: [Vala] Execute a function by name in Genie

2010-07-03 Thread Andrew
Let's say I have the following code with the pseudo-function 'eval' : --- def doSomething(arg1:string) print arg1 init eval(doSomething('Hello World!')) --- How do I do the 'eval' pseudo-function in Genie? Thanks -- Andrew