RosettaCodeData/Task/Hello-world-Line-printer/PureBasic/hello-world-line-printer.purebasic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
290 B
Text

MyPrinter$ = LPRINT_GetDefaultPrinter()
If LPRINT_OpenPrinter(MyPrinter$)
If LPRINT_StartDoc("Printing a RC-Task")
LPRINT_Print(Chr(27) + "E") ; PCL reset for HP Printers
LPRINT_PrintN("Hello World!")
LPRINT_NewPage()
LPRINT_EndDoc()
EndIf
LPRINT_ClosePrinter()
EndIf