not function:

  • Can also be called as !

Return false if the argument is true and true if the argument is false.

Examples:

  • running: (not true) will give: false

  • running: (not false) will give: true

  • running: (not (string? 12)) will give: true

  • running: (not 12) will return nothing