Home > Documentation > Syntax > Functions > Cout and Coutln
Output a string to the debug console. Cout will output a string expression. Coutln will output a string expression followed by a new line.
Definition
cout(arg1)
Parameters:
- arg1 – string
The string expression to use.
Returns:
- arg1
Definition
coutln(arg1)
Parameters:
- arg1 – string
The string expression to use.
Returns:
- arg1
Eg:
<<!
coutln("current table is" + tbl)
!>>

Leave a comment