Print Statement¶
Print statement is used to print a value to the terminal. This is done using the print keyword. This statement cannot be used if disablePrint is set to true.
Syntax
print expr;
Example
print 1;
print "Hello World";