Changes between Initial Version and Version 1 of Doc/panc/dml/functions
- Timestamp:
- Mar 2, 2007, 11:01:37 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Doc/panc/dml/functions
v1 v1 1 = Built-In Functions = 2 3 '''debug( string message )''' 4 5 This function prints the given message on stdout when debugging is enabled with the DEBUG USER 6 flag. 7 {{{ 8 # print the value of x if it is positive 9 if (x > 0) 10 debug("x is positive: " + to_string(x)); 11 }}}