0079: Invalid parameter in Alloc command
The first parameter in the
Alloc
command is not a global variable. This command only works with global variables.Possible solutions: provide a global variable:
Alloc([email protected], 10) // error
Alloc($var, 10) // OK
Last modified 2yr ago