LPRINT

From Liberty BASIC Family
Jump to navigation Jump to search
Supported in Just BASIC Supported in Liberty BASIC Not supported in Liberty BASIC 5 Not supported in Run BASIC

Description

Sends your content to the default printer.

Syntax

  1. lprint content[;more content]

It is similar to the way PRINT sends output to the MAINWIN.

Hints

Printing can be formatted into columns with the TAB() function.
Also see: DUMP and PrinterFont$

Example

' send a blank line to printer
lprint
' send some text to printer
lprint "Hello world."
' send multiple items on one line to printer
lprint "Hello world."; " I'm here."; " and I'm "; 3; " years old."
' start the print job now
dump

Useful Procedures

' Place a useful function or sub using this keyword here