RosettaCodeData/Task/Hello-world-Line-printer/PureBasic/hello-world-line-printer.purebasic

11 lines
290 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
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