Skip to content
ebp012 edited this page Sep 29, 2024 · 1 revision

The note() routine is used to print lines of text on the same line as the previous, as opposed to print().

For example:

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

shall produce:

Hello, world!

as the output. Note that whitespace in strings is not ignored.

Clone this wiki locally