Print on screen the text passed to the function.

1 print

<print console='console'>
    <text /> ?
</print>
Example

Print by screen a result.

Copy
<xsql-script name='script_print_sample1'>
    <body>
        <set name='a' type='integer' value='2' />
        <set name='b' type='integer' value='3' />

        <print>operación (a+b)=<add><a/><b/></add></print>

    </body>
</xsql-script>