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:

print "<message>";

An empty string may be used to emit a blank line.

Examples:

print "Creating Sales bucket with sample data...";
print "90th percentile of revenue";
print "";