Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

Do not use global or local variables with the same names as the arguments used in the console.

Example:

Incorrect will return all entries. Example:

Code Block
languageros
Incorrect will return all entries.

:local name aa; /file/print where name=$name


Correct.

Code Block
languageros


:local nm aa; /file/print where name=$nm

...