theemperor
Programmer
Hi all,
does anyone know if it is possible to store function names in variables so that they are not called immediately? Something like this
dim FunctionContainer, testVar
Regards,
Robert
does anyone know if it is possible to store function names in variables so that they are not called immediately? Something like this
dim FunctionContainer, testVar
Code:
function foo()
foo = 10
end function
FunctionContainer = foo
testVar = FunctionContainer()
Regards,
Robert