For the complete documentation index, see llms.txt. This page is also available as Markdown.

0081: Too many actual parameters

The command is given more parameters than it expects.

For example, the Inc command accepts either one or two parameters and supplying three would raise an error.

Possible solutions: check the related documentation and provide fewer parameters:

Sqr($var, 1) // error
Sqr($var) // OK

Last updated