Пример указателя на функцию
Code
Declare Function MyFunction(ByVal a As Integer) As Integer
Dim myFunctionPointer As Function(ByVal a As Integer) As Integer
myFunctionPointer = @MyFunction
'Calling from a function pointer
Print myFunctionPointer(12)
Function MyFunction(ByVal a As Integer) As Integer
Return a + 1
End Function
sleep