Difference between revisions of "Print"
Jump to navigation
Jump to search
m |
|||
Line 1: | Line 1: | ||
<c>print</c> is an [[:Category:Intrinsic Functions|intrinsic function]] that displays a [[string]] to the user. It is a standard intrinsic, though there may be some implementations where this output is not actually visible. In implementations that have something like a standard output stream, <c>print</c> adds the given string to that stream, typically followed by the standard line delimiter. | <c>print</c> is an [[:Category:Intrinsic Functions|intrinsic function]] that displays a [[string]] to the user. It is a standard intrinsic, though there may be some implementations where this output is not actually visible. In implementations that have something like a standard output stream, <c>print</c> adds the given string to that stream, typically followed by the standard line delimiter. | ||
+ | |||
+ | See also: [[PixelDisplay.print]] | ||
=== Arguments === | === Arguments === |
Revision as of 14:02, 24 October 2020
print
is an intrinsic function that displays a string to the user. It is a standard intrinsic, though there may be some implementations where this output is not actually visible. In implementations that have something like a standard output stream, print
adds the given string to that stream, typically followed by the standard line delimiter.
See also: PixelDisplay.print
Arguments
Parameter Name | Default Value | Meaning |
---|---|---|
s | "" | string to display to the user |
Usage Notes
print
returns null, and so it is usually used as a statement. As such, it does not require parentheses around its argument.
The argument defaults to an empty string, so print
by itself may be used to print a blank line.
Example
print "Hello, world!"