print( item... )

Prints the supplied items.

:-) print( 56 );
56There are 0 results
      

The above example is not a mistake, the print function doesn't print a newline at the end, so any subsequent output will be displayed directly afterwards. For print with a newline after, see println.

Supplied items are printed in different ways, depending on their type. In this respect the function behaves in exactly the same way as the println function, so please see that documentation for details.