Versions Compared

Key

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

...

Home › B3_Ampi › Helper functions

Note

Unlike scores or blackboxes, helper functions need to be defined as functions in the Script block. Helper functions cannot return anything outside of a function block, otherwise, they will fail.

Code Block
// valid
function abc() {
  return 1;
}

// invalid
return 1;

How to debug blackboxes and scores

...