Print by screen the text passed to the function adding a break line at the end.

1 println

<println console='true|false'>
    <text /> ?
</println>
Example

Print with break line.

Copy
<xsql-script name='script_println_sample1'>
    <body>
        <set name='a' type='integer' value='2' />
        <set name='b' type='integer' value='3' />
        <println>variable a=<a/></println>
        <println>variable b=<b/></println>
        <println>
          operaci<string.noaccents>ó</string.noaccents>n (a+b)=<add><a/><b/></add>
        </println>
    </body>
</xsql-script>

Returns:

Copy
variable a=2
variable b=3

          operation (a+b)=5