= Built-In Functions = '''debug( string message )''' This function prints the given message on stdout when debugging is enabled with the DEBUG USER flag. {{{ # print the value of x if it is positive if (x > 0) debug("x is positive: " + to_string(x)); }}}