Skip to content

print()

ebp012 edited this page Sep 28, 2024 · 5 revisions

The print() routine is used to print lines of text starting and ending on a newline, as opposed to note().

For example:

print("Hello,");
print("world!");

will give:

Hello,

world

as the output.

Clone this wiki locally