Changes between Initial Version and Version 1 of Doc/panc/dml/functions


Ignore:
Timestamp:
Mar 2, 2007, 11:01:37 PM (19 years ago)
Author:
/O=GRID-FR/C=FR/O=CNRS/OU=LAL/CN=Charles Loomis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/panc/dml/functions

    v1 v1  
     1= Built-In Functions =
     2
     3'''debug( string message )'''
     4
     5This function prints the given message on stdout when debugging is enabled with the DEBUG USER
     6flag.
     7{{{
     8# print the value of x if it is positive
     9if (x > 0)
     10debug("x is positive: " + to_string(x));
     11}}}