print

Print given expression in standard output. Generally used for debug purpose.

Syntax
print expression

expression can be text, number or variable.

Example
print "hello"
print 123
a = 314
print a