The PRINT Statement =================== The ``print`` statement writes a string literal to standard output. It is useful for annotating the output of a script with human-readable labels and section headings. **Syntax:** .. code-block:: none print ""; An empty string may be used to emit a blank line. **Examples:** .. code-block:: aql print "Creating Sales bucket with sample data..."; print "90th percentile of revenue"; print "";