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(10@, 10) // error
Alloc($var, 10) // OK
Last modified 3yr ago