GetRef is used to create a pointer object to a function
MsgBox test3(3,4,GetRef("test1"))
MsgBox test3(3,4,GetRef("test2"))
Function test1(a,b)
test1= a+b
End Function
Function test2(a,b)
test2= a*b
End Function
Function test3(a,b,FunPointer)
test3=FunPointer(a,b)
End Function