printOutput a string
&reftitle.description;
intprintstringarg
Outputs arg.
print is not actually a real function (it is a
language construct) so you are not required to use parentheses
with its argument list.
&reftitle.parameters;
arg
The input data.
&reftitle.returnvalues;
Returns 1, always.
&reftitle.examples;
print examples
"foo");
print "this is {$bar['value']} !"; // this is foo !
// Using single quotes will print the variable name, not the value
print 'foo is $foo'; // foo is $foo
// If you are not using any other characters, you can just print variables
print $foo; // foobar
print <<
]]>
&reftitle.notes;
¬e.language-construct;
&reftitle.seealso;
echoprintfflushHeredoc syntax