wiki:Doc/panc/dml/functions

Version 1 (modified by /O=GRID-FR/C=FR/O=CNRS/OU=LAL/CN=Charles Loomis, 17 years ago) (diff)

--

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));