Hello world/Line printer: Difference between revisions

Content added Content deleted
m (Small change to code in alternative EDSAC version)
m (syntax highlighting fixup automation)
Line 21: Line 21:
{{trans|Python}}
{{trans|Python}}


<lang 11l>V lp = File(‘/dev/lp0’, ‘w’)
<syntaxhighlight lang="11l">V lp = File(‘/dev/lp0’, ‘w’)
lp.write("Hello World!\n")
lp.write("Hello World!\n")
lp.close()</lang>
lp.close()</syntaxhighlight>


=={{header|360 Assembly}}==
=={{header|360 Assembly}}==
<lang 360asm>HELLO CSECT
<syntaxhighlight lang="360asm">HELLO CSECT
PRINT NOGEN
PRINT NOGEN
BALR 12,0
BALR 12,0
Line 38: Line 38:
L1 DS 0CL133
L1 DS 0CL133
HW DC C'Hello World!'
HW DC C'Hello World!'
END HELLO</lang>
END HELLO</syntaxhighlight>


=={{header|Action!}}==
=={{header|Action!}}==
<lang Action!>Proc Main()
<syntaxhighlight lang="action!">Proc Main()
Open(1,"P:",8,0)
Open(1,"P:",8,0)
PrintDE(1,"HELLO WORLD!")
PrintDE(1,"HELLO WORLD!")
Close(1)
Close(1)
Return
Return
</syntaxhighlight>
</lang>


=={{header|Ada}}==
=={{header|Ada}}==
===[[Unix]]===
===[[Unix]]===
Assuming that the line printer is attached to /dev/lp0
Assuming that the line printer is attached to /dev/lp0
<syntaxhighlight lang="ada">
<lang Ada>
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Text_IO; use Ada.Text_IO;


Line 69: Line 69:
Close (Printer);
Close (Printer);
end Print_Line;
end Print_Line;
</syntaxhighlight>
</lang>


=={{header|ALGOL 68}}==
=={{header|ALGOL 68}}==
Line 77: Line 77:
remote printer interfaced via CUPS. Extending it to other
remote printer interfaced via CUPS. Extending it to other
environments is left as an exercise for the reader.
environments is left as an exercise for the reader.
<lang algol68>
<syntaxhighlight lang="algol68">
BEGIN
BEGIN
STRING printer name = "/dev/lp0";
STRING printer name = "/dev/lp0";
Line 97: Line 97:
FI
FI
END
END
</lang> {{out}}
</syntaxhighlight> {{out}}
<pre>
<pre>
Can't contact line printer on /dev/lp0
Can't contact line printer on /dev/lp0
Line 107: Line 107:
Assumes a printer card is installed in the Apple II's number 1 expansion slot.
Assumes a printer card is installed in the Apple II's number 1 expansion slot.


<lang basic>
<syntaxhighlight lang="basic">
PR#1
PR#1
PRINT "HELLO WORLD!"
PRINT "HELLO WORLD!"
</syntaxhighlight>
</lang>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
<syntaxhighlight lang="autohotkey">
<lang AutoHotkey>
Fileappend, Hello World!, print.txt
Fileappend, Hello World!, print.txt
Run, print "print.txt"
Run, print "print.txt"
</syntaxhighlight>
</lang>


=={{header|AWK}}==
=={{header|AWK}}==
Unix / Linux:
Unix / Linux:
<syntaxhighlight lang="awk">
<lang AWK>
BEGIN { print("Hello World!") >"/dev/lp0" }
BEGIN { print("Hello World!") >"/dev/lp0" }
</syntaxhighlight>
</lang>


=={{header|BASIC}}==
=={{header|BASIC}}==
Line 128: Line 128:
{{works with|ZX Spectrum Basic}}
{{works with|ZX Spectrum Basic}}
{{works with|Liberty BASIC}}
{{works with|Liberty BASIC}}
<lang qbasic>LPRINT "Hello World!"</lang>
<syntaxhighlight lang="qbasic">LPRINT "Hello World!"</syntaxhighlight>


==={{header|BaCon}}===
==={{header|BaCon}}===
Piping data to ''lp'' would also work. This example demonstrates writing to a device.
Piping data to ''lp'' would also work. This example demonstrates writing to a device.
<lang freebasic>' Hello, printer
<syntaxhighlight lang="freebasic">' Hello, printer
READ msg$
READ msg$
DATA "Hello World!\n"
DATA "Hello World!\n"
Line 139: Line 139:
OPEN "/dev/lp0" FOR DEVICE AS printer
OPEN "/dev/lp0" FOR DEVICE AS printer
PUTBYTE msg$ TO printer SIZE LEN(msg$)
PUTBYTE msg$ TO printer SIZE LEN(msg$)
CLOSE DEVICE printer</lang>
CLOSE DEVICE printer</syntaxhighlight>


==={{header|BASIC256}}===
==={{header|BASIC256}}===
<lang BASIC256>printeron
<syntaxhighlight lang="basic256">printeron
font "Arial", 20, 50
font "Arial", 20, 50
text 10,100, "Hello World!"
text 10,100, "Hello World!"
printeroff</lang>
printeroff</syntaxhighlight>


==={{header|BBC BASIC}}===
==={{header|BBC BASIC}}===
{{works with|BBC BASIC for Windows}}
{{works with|BBC BASIC for Windows}}
<lang bbcbasic> prn% = OPENOUT("PRN:")
<syntaxhighlight lang="bbcbasic"> prn% = OPENOUT("PRN:")
PRINT #prn%, "Hello World!"
PRINT #prn%, "Hello World!"
CLOSE #prn%</lang>
CLOSE #prn%</syntaxhighlight>


==={{header|IS-BASIC}}===
==={{header|IS-BASIC}}===
<lang IS-BASIC>LPRINT "Hello World!"</lang>
<syntaxhighlight lang="is-basic">LPRINT "Hello World!"</syntaxhighlight>


==={{header|Yabasic}}===
==={{header|Yabasic}}===
<lang yabasic>open window 100,100
<syntaxhighlight lang="yabasic">open window 100,100
open printer
open printer
text 10, 50, "Hello World!"
text 10, 50, "Hello World!"
close printer
close printer
close window</lang>
close window</syntaxhighlight>


=={{header|Batch File}}==
=={{header|Batch File}}==
<lang dos>ECHO Hello world!>PRN</lang>
<syntaxhighlight lang="dos">ECHO Hello world!>PRN</syntaxhighlight>


=={{header|C}}==
=={{header|C}}==
===[[Unix]]===
===[[Unix]]===
Assuming that the line printer is attached to /dev/lp0
Assuming that the line printer is attached to /dev/lp0
<lang C>#include <stdio.h>
<syntaxhighlight lang="c">#include <stdio.h>


int main()
int main()
Line 178: Line 178:
fclose(lp);
fclose(lp);
return 0;
return 0;
}</lang>
}</syntaxhighlight>


=={{header|C sharp}}==
=={{header|C sharp}}==
Line 185: Line 185:
which is out of scope of this example.
which is out of scope of this example.


<lang C sharp>
<syntaxhighlight lang="c sharp">
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public class DOCINFOA
public class DOCINFOA
Line 245: Line 245:
ClosePrinter(hPrinter);
ClosePrinter(hPrinter);
}
}
}</lang>
}</syntaxhighlight>


=={{header|C++}}==
=={{header|C++}}==
<lang cpp>#include <iostream>
<syntaxhighlight lang="cpp">#include <iostream>
#include <fstream>
#include <fstream>


Line 257: Line 257:
lprFile.close();
lprFile.close();
return 0;
return 0;
}</lang>
}</syntaxhighlight>


=={{header|Clipper}}==
=={{header|Clipper}}==
<lang Clipper>SET PRINT ON
<syntaxhighlight lang="clipper">SET PRINT ON
SET CONSOLE OFF
SET CONSOLE OFF
? "Hello World!"
? "Hello World!"
SET PRINT OFF
SET PRINT OFF
SET CONSOLE ON
SET CONSOLE ON
</syntaxhighlight>
</lang>


=={{header|Clojure}}==
=={{header|Clojure}}==
Translated from Java (mechanically, as I don't understand how to test a line printer):
Translated from Java (mechanically, as I don't understand how to test a line printer):
<lang clojure>(ns rosetta-code.line-printer
<syntaxhighlight lang="clojure">(ns rosetta-code.line-printer
(:import java.io.FileWriter))
(:import java.io.FileWriter))


(defn -main [& args]
(defn -main [& args]
(with-open [wr (new FileWriter "/dev/lp0")]
(with-open [wr (new FileWriter "/dev/lp0")]
(.write wr "Hello, World!")))</lang>
(.write wr "Hello, World!")))</syntaxhighlight>


=={{header|COBOL}}==
=={{header|COBOL}}==
<lang COBOL>IDENTIFICATION DIVISION.
<syntaxhighlight lang="cobol">IDENTIFICATION DIVISION.
PROGRAM-ID. GOODBYE-WORLD-PRINTER.
PROGRAM-ID. GOODBYE-WORLD-PRINTER.


Line 284: Line 284:
UPON PRINTER
UPON PRINTER
END-DISPLAY.
END-DISPLAY.
STOP RUN.</lang>
STOP RUN.</syntaxhighlight>


=={{header|Commodore BASIC}}==
=={{header|Commodore BASIC}}==
Most Commodore printer peripherals operate off the IEC bus commonly as device 4 or 5. It is also possible that some printers may be connected through the RS-232 serial port (typically device 2). This example assumes a device on the IEC bus with a default setting of device 4. This example does not utilize any printer control codes to change font, pitch, quality, graphics, etc., as those can vary between brands and models of printer.
Most Commodore printer peripherals operate off the IEC bus commonly as device 4 or 5. It is also possible that some printers may be connected through the RS-232 serial port (typically device 2). This example assumes a device on the IEC bus with a default setting of device 4. This example does not utilize any printer control codes to change font, pitch, quality, graphics, etc., as those can vary between brands and models of printer.


<syntaxhighlight lang="commodorebasicv2">
<lang CommodoreBASICv2>
10 rem rosetta code - "Hello World" on line printer
10 rem rosetta code - "Hello World" on line printer
20 open 7,4 : rem open <logical file number>, <device number>
20 open 7,4 : rem open <logical file number>, <device number>
30 print#7,"hello world!" : rem print line as shown to logical file number
30 print#7,"hello world!" : rem print line as shown to logical file number
40 close 7 : rem close the file number
40 close 7 : rem close the file number
</syntaxhighlight>
</lang>




=={{header|Common Lisp}}==
=={{header|Common Lisp}}==
Assuming that the line printer is attached to /dev/lp0
Assuming that the line printer is attached to /dev/lp0
<lang Lisp>(defun main ()
<syntaxhighlight lang="lisp">(defun main ()
(with-open-file (stream "/dev/lp0"
(with-open-file (stream "/dev/lp0"
:direction :output
:direction :output
Line 305: Line 305:
(format stream "Hello World~%")))
(format stream "Hello World~%")))
(main)
(main)
</syntaxhighlight>
</lang>


=={{header|D}}==
=={{header|D}}==
<lang d>import std.stdio;
<syntaxhighlight lang="d">import std.stdio;


void main()
void main()
Line 315: Line 315:
lp.writeln("Hello World!");
lp.writeln("Hello World!");
}
}
</syntaxhighlight>
</lang>


=={{header|Delphi}}==
=={{header|Delphi}}==
<lang Delphi>program Project1;
<syntaxhighlight lang="delphi">program Project1;


{$APPTYPE CONSOLE}
{$APPTYPE CONSOLE}
Line 331: Line 331:
Writeln(lPrinterAsTextFile, 'Hello World!');
Writeln(lPrinterAsTextFile, 'Hello World!');
CloseFile(lPrinterAsTextFile);
CloseFile(lPrinterAsTextFile);
end.</lang>
end.</syntaxhighlight>


=={{header|Diego}}==
=={{header|Diego}}==
Once the caller has met the computer and its printer...
Once the caller has met the computer and its printer...
<lang diego>with_computer(comp1)_printer(lp1)_text(Hello World!);</lang>
<syntaxhighlight lang="diego">with_computer(comp1)_printer(lp1)_text(Hello World!);</syntaxhighlight>
If the caller is the computer...
If the caller is the computer...
<lang diego>with_printer(lp1)_text(Hello World!);</lang>
<syntaxhighlight lang="diego">with_printer(lp1)_text(Hello World!);</syntaxhighlight>


=={{header|Dragon}}==
=={{header|Dragon}}==
<lang dragon>
<syntaxhighlight lang="dragon">
select "files"
select "files"


Line 348: Line 348:
flush(f2)
flush(f2)
fclose(f2)
fclose(f2)
</syntaxhighlight>
</lang>


=={{header|EchoLisp}}==
=={{header|EchoLisp}}==
EchoLisp supports a virtual printer which is not stdout. It is actually an extensible division of the HTML document, with printer pages as subdivisions. Printer and pages may be hidden/shown at convenience.
EchoLisp supports a virtual printer which is not stdout. It is actually an extensible division of the HTML document, with printer pages as subdivisions. Printer and pages may be hidden/shown at convenience.
<lang lisp>
<syntaxhighlight lang="lisp">
(printer-font "Courier") ;; change printer font
(printer-font "Courier") ;; change printer font
(printer-page "ROSETTA CODE") ;; starts a new page with nice header
(printer-page "ROSETTA CODE") ;; starts a new page with nice header
(printer-writeln "Hello World!") ;; prints new line (not seen on stdout)
(printer-writeln "Hello World!") ;; prints new line (not seen on stdout)
</syntaxhighlight>
</lang>


=={{header|EDSAC order code}}==
=={{header|EDSAC order code}}==
This program uses self-modifying code to loop through an array of characters. Since the EDSAC character set does not include lower-case letters or exclamation marks, we actually print <tt>HELLO WORLD</tt> followed by a carriage return and a line feed. Strings cannot be null-terminated, because 0 happens to be the character code for <tt>P</tt>; instead, we mark the final character by including a 1 (which has no printable effect) in the least significant bit.
This program uses self-modifying code to loop through an array of characters. Since the EDSAC character set does not include lower-case letters or exclamation marks, we actually print <tt>HELLO WORLD</tt> followed by a carriage return and a line feed. Strings cannot be null-terminated, because 0 happens to be the character code for <tt>P</tt>; instead, we mark the final character by including a 1 (which has no printable effect) in the least significant bit.
<lang edsac>[ Hello world
<syntaxhighlight lang="edsac">[ Hello world
===========
===========


Line 420: Line 420:
&D [ Line feed + 1 ]
&D [ Line feed + 1 ]


EZPF</lang>
EZPF</syntaxhighlight>


==={{header|Alternative}}===
==={{header|Alternative}}===
Line 428: Line 428:


The EDSAC PC simulator allows .F for null and *F for letter shift, but it seems from WWG that on the original EDSAC these had to be input as K4096F and K2048F respectively.
The EDSAC PC simulator allows .F for null and *F for letter shift, but it seems from WWG that on the original EDSAC these had to be input as K4096F and K2048F respectively.
<lang edsac>
<syntaxhighlight lang="edsac">
[Alternative "Hello World" for Rosetta Code]
[Alternative "Hello World" for Rosetta Code]


Line 468: Line 468:
PF [acc = 0 on entry]
PF [acc = 0 on entry]
[end]
[end]
</syntaxhighlight>
</lang>


=={{header|ERRE}}==
=={{header|ERRE}}==
<syntaxhighlight lang="erre">
<lang ERRE>
! Hello World in ERRE language
! Hello World in ERRE language
PROGRAM HELLO
PROGRAM HELLO
Line 479: Line 479:
!$NOREDIR
!$NOREDIR
END PROGRAM
END PROGRAM
</syntaxhighlight>
</lang>


Prints on LPT1: (if exists) without opening a file.
Prints on LPT1: (if exists) without opening a file.
Line 488: Line 488:
Prints through Unix "lpr" command.
Prints through Unix "lpr" command.


<lang factor>( scratchpad ) USE: io.encodings.utf8
<syntaxhighlight lang="factor">( scratchpad ) USE: io.encodings.utf8
( scratchpad ) USE: io.launcher
( scratchpad ) USE: io.launcher
( scratchpad ) "lpr" utf8 [ "Hello World!" print ] with-process-writer</lang>
( scratchpad ) "lpr" utf8 [ "Hello World!" print ] with-process-writer</syntaxhighlight>


=={{header|Forth}}==
=={{header|Forth}}==
Forth systems currently run on everything from bare metal to modern multi-user operating systems and printers are handled differently on each. This demonstration shows a common way that text output is re-directed to printers and/or other devices by vectoring the action of the Forth word EMIT. Emit takes one character off the stack and outputs it to a device. By defining all I/O with the primitive operation EMIT, we can vector the output anywhere we choose, even on hardware with no O/S. Here we show a very basic printer device driver for an embedded system that adds I/O re-direction to the system's Forth language.
Forth systems currently run on everything from bare metal to modern multi-user operating systems and printers are handled differently on each. This demonstration shows a common way that text output is re-directed to printers and/or other devices by vectoring the action of the Forth word EMIT. Emit takes one character off the stack and outputs it to a device. By defining all I/O with the primitive operation EMIT, we can vector the output anywhere we choose, even on hardware with no O/S. Here we show a very basic printer device driver for an embedded system that adds I/O re-direction to the system's Forth language.
<lang Forth>\ No operating system, embedded device, printer output example
<syntaxhighlight lang="forth">\ No operating system, embedded device, printer output example


defer emit \ deferred words in Forth are a place holder for an
defer emit \ deferred words in Forth are a place holder for an
Line 519: Line 519:
\ vector control words
\ vector control words
: >console ['] console-emit is EMIT ; \ assign the execution token of console-emit to EMIT
: >console ['] console-emit is EMIT ; \ assign the execution token of console-emit to EMIT
: >printer ['] printer-emit is EMIT ; \ assign the execution token of printer-emit to EMIT</lang>
: >printer ['] printer-emit is EMIT ; \ assign the execution token of printer-emit to EMIT</syntaxhighlight>


Usage Examples:
Usage Examples:
Line 543: Line 543:


Since for a new job, output would commence with the lineprinter already at the top of a new page, an overprint (no carriage advance) thus means writing to the very first line. If however, top-of-page placement was not assured at your installation, then "1HELLO WORLD!" would do.
Since for a new job, output would commence with the lineprinter already at the top of a new page, an overprint (no carriage advance) thus means writing to the very first line. If however, top-of-page placement was not assured at your installation, then "1HELLO WORLD!" would do.
<lang Fortran> WRITE (6,1)
<syntaxhighlight lang="fortran"> WRITE (6,1)
1 FORMAT ("+HELLO WORLD!")
1 FORMAT ("+HELLO WORLD!")
END </lang>
END </syntaxhighlight>


=={{header|FreeBASIC}}==
=={{header|FreeBASIC}}==
<lang freebasic>' FB 1.05.0 Win64
<syntaxhighlight lang="freebasic">' FB 1.05.0 Win64


Open Lpt "Lpt:" As #1 '' prints to default printer
Open Lpt "Lpt:" As #1 '' prints to default printer
Print #1, "Hello World!"
Print #1, "Hello World!"
Close #1</lang>
Close #1</syntaxhighlight>


=={{header|Go}}==
=={{header|Go}}==
<lang go>package main
<syntaxhighlight lang="go">package main


import (
import (
Line 572: Line 572:


fmt.Fprintln(lp0, "Hello World!")
fmt.Fprintln(lp0, "Hello World!")
}</lang>
}</syntaxhighlight>


=={{header|Groovy}}==
=={{header|Groovy}}==
<lang groovy>new File('/dev/lp0').write('Hello World!\n')
<syntaxhighlight lang="groovy">new File('/dev/lp0').write('Hello World!\n')
</syntaxhighlight>
</lang>


=={{header|GUISS}}==
=={{header|GUISS}}==


<lang guiss>Start,Programs,Accessories,Notepad,Type:Goodbye World[pling],
<syntaxhighlight lang="guiss">Start,Programs,Accessories,Notepad,Type:Goodbye World[pling],
Menu:File,Print,Button:OK</lang>
Menu:File,Print,Button:OK</syntaxhighlight>


=={{header|Harbour}}==
=={{header|Harbour}}==
<lang visualfoxpro>SET PRINT ON
<syntaxhighlight lang="visualfoxpro">SET PRINT ON
SET CONSOLE OFF
SET CONSOLE OFF
? "Hello World!"
? "Hello World!"
SET PRINT OFF
SET PRINT OFF
SET CONSOLE ON</lang>
SET CONSOLE ON</syntaxhighlight>


=={{header|Haskell}}==
=={{header|Haskell}}==
<lang haskell>import System.Process (ProcessHandle, runCommand)
<syntaxhighlight lang="haskell">import System.Process (ProcessHandle, runCommand)


main :: IO ProcessHandle
main :: IO ProcessHandle
main = runCommand "echo \"Hello World!\" | lpr"</lang>
main = runCommand "echo \"Hello World!\" | lpr"</syntaxhighlight>


=={{header|Icon}} and {{header|Unicon}}==
=={{header|Icon}} and {{header|Unicon}}==
Line 600: Line 600:
Works in both languages, provided printer is attached to <tt>/dev/lp0</tt>.
Works in both languages, provided printer is attached to <tt>/dev/lp0</tt>.


<lang unicon>procedure main()
<syntaxhighlight lang="unicon">procedure main()
write(open("/dev/lp0","w"),"Hello, world!")
write(open("/dev/lp0","w"),"Hello, world!")
end</lang>
end</syntaxhighlight>


=={{header|Integer BASIC}}==
=={{header|Integer BASIC}}==
Line 610: Line 610:
=={{header|J}}==
=={{header|J}}==


<lang j>require'print'
<syntaxhighlight lang="j">require'print'
print'Hello world!'</lang>
print'Hello world!'</syntaxhighlight>


=={{header|Java}}==
=={{header|Java}}==


<lang java>import java.io.FileWriter;
<syntaxhighlight lang="java">import java.io.FileWriter;
import java.io.IOException;
import java.io.IOException;
Line 628: Line 628:
}
}
}
}
}</lang>
}</syntaxhighlight>


=={{header|JavaScript}}==
=={{header|JavaScript}}==
{{works with|Node.js}}
{{works with|Node.js}}
<lang javascript>// This example runs on Node.js
<syntaxhighlight lang="javascript">// This example runs on Node.js
var fs = require('fs');
var fs = require('fs');
// Assuming lp is at /dev/lp0
// Assuming lp is at /dev/lp0
var lp = fs.openSync('/dev/lp0', 'w');
var lp = fs.openSync('/dev/lp0', 'w');
fs.writeSync(lp, 'Hello, world!\n');
fs.writeSync(lp, 'Hello, world!\n');
fs.close(lp);</lang>
fs.close(lp);</syntaxhighlight>
{{works with|Firefox}}
{{works with|Firefox}}
{{works with|Chromium}}
{{works with|Chromium}}
<lang javascript>
<syntaxhighlight lang="javascript">
document.write("Hello World!");
document.write("Hello World!");
print(); //Opens a dialog.
print(); //Opens a dialog.
</syntaxhighlight>
</lang>


=={{header|Julia}}==
=={{header|Julia}}==
<lang julia>
<syntaxhighlight lang="julia">
lineprinter = Sys.iswindows() ? "LPT3" : "/dev/lp0"
lineprinter = Sys.iswindows() ? "LPT3" : "/dev/lp0"
lp = open(lineprinter, "w")
lp = open(lineprinter, "w")
write(lp, "Hello world")
write(lp, "Hello world")
</syntaxhighlight>
</lang>


=={{header|Kotlin}}==
=={{header|Kotlin}}==
{{Works with|Ubuntu|14.04}}
{{Works with|Ubuntu|14.04}}
<lang scala>import java.io.File
<syntaxhighlight lang="scala">import java.io.File


fun main(args: Array<String>) {
fun main(args: Array<String>) {
val text = "Hello World!\n"
val text = "Hello World!\n"
File("/dev/lp0").writeText(text)
File("/dev/lp0").writeText(text)
}</lang>
}</syntaxhighlight>


=={{header|Lasso}}==
=={{header|Lasso}}==


<lang lasso>File_Write: '/dev/lp0', 'Hello world', -FileOverWrite;</lang>
<syntaxhighlight lang="lasso">File_Write: '/dev/lp0', 'Hello world', -FileOverWrite;</syntaxhighlight>


=={{header|Locomotive Basic}}==
=={{header|Locomotive Basic}}==


<lang locobasic>10 PRINT #8, "Hello World!"</lang>
<syntaxhighlight lang="locobasic">10 PRINT #8, "Hello World!"</syntaxhighlight>


=={{header|M2000 Interpreter}}==
=={{header|M2000 Interpreter}}==
We can use printer like a page printer
We can use printer like a page printer
<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Printer {
Printer {
\\ just change the current layer to Print Page
\\ just change the current layer to Print Page
Line 677: Line 677:
Print "Hello World!"
Print "Hello World!"
}
}
</syntaxhighlight>
</lang>


Or we can use ANSI output using a file for export in Lpt1
Or we can use ANSI output using a file for export in Lpt1


<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Try ok {
Try ok {
Open "Lpt1" For OutPut As N '' prints to Lpt1 if exist a printer
Open "Lpt1" For OutPut As N '' prints to Lpt1 if exist a printer
Line 688: Line 688:
}
}
If Not Ok Then Print "Can't Print"
If Not Ok Then Print "Can't Print"
</syntaxhighlight>
</lang>


If we have a file in current dir we can use a Dos command:
If we have a file in current dir we can use a Dos command:
<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Dos "Print /d:lpt1 file " +quote$(dir$+"this.txt");
Dos "Print /d:lpt1 file " +quote$(dir$+"this.txt");
</syntaxhighlight>
</lang>
Using ; at the end of DOS command we have no open terminal
Using ; at the end of DOS command we have no open terminal


<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Dos "command" [, sleep time after call] [;]
Dos "command" [, sleep time after call] [;]
</syntaxhighlight>
</lang>


=={{header|Maple}}==
=={{header|Maple}}==
<lang Maple>lprint("Hello World!")</lang>
<syntaxhighlight lang="maple">lprint("Hello World!")</syntaxhighlight>


=={{header|Mathematica}} / {{header|Wolfram Language}}==
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<lang Mathematica>commandstring = "echo Hello World! | lpr -P Printer01"
<syntaxhighlight lang="mathematica">commandstring = "echo Hello World! | lpr -P Printer01"
Run[commandstring]</lang>
Run[commandstring]</syntaxhighlight>


=={{header|MATLAB}} / {{header|Octave}}==
=={{header|MATLAB}} / {{header|Octave}}==
===[[Unix]]===
===[[Unix]]===
Assuming that the line printer is attached to /dev/lp0
Assuming that the line printer is attached to /dev/lp0
<lang Matlab> fid = fopen('/dev/lp0');
<syntaxhighlight lang="matlab"> fid = fopen('/dev/lp0');
fprintf(fid,'Hello World!\n');
fprintf(fid,'Hello World!\n');
fclose(fid);</lang>
fclose(fid);</syntaxhighlight>


=={{header|MIXAL}}==
=={{header|MIXAL}}==
<syntaxhighlight lang="mixal">
<lang MIXAL>
LPR EQU 18
LPR EQU 18
STRING EQU 2000
STRING EQU 2000
Line 727: Line 727:
ALF D!
ALF D!
END START
END START
</syntaxhighlight>
</lang>


=={{header|N/t/roff}}==
=={{header|N/t/roff}}==
Line 742: Line 742:
Because /.ROFF/ is a document formatting language, the majority of lines in a typical /.ROFF/ source file is to be textual input. This input is typeset directly onto the output medium. Therefore, the user need not call a procedure to print text to any terminal.
Because /.ROFF/ is a document formatting language, the majority of lines in a typical /.ROFF/ source file is to be textual input. This input is typeset directly onto the output medium. Therefore, the user need not call a procedure to print text to any terminal.


<lang N/t/roff>
<syntaxhighlight lang="n/t/roff">
Hello World!
Hello World!
</syntaxhighlight>
</lang>


=={{header|Nim}}==
=={{header|Nim}}==
Assuming that the line printer is attached to /dev/lp0:
Assuming that the line printer is attached to /dev/lp0:
<lang nim>var lp = open("/dev/lp0", fmWrite)
<syntaxhighlight lang="nim">var lp = open("/dev/lp0", fmWrite)
lp.writeln "Hello World"
lp.writeln "Hello World"
lp.close()</lang>
lp.close()</syntaxhighlight>


=={{header|OCaml}}==
=={{header|OCaml}}==
Assuming that the line printer is attached to /dev/lp0
Assuming that the line printer is attached to /dev/lp0
<lang ocaml>let () =
<syntaxhighlight lang="ocaml">let () =
let oc = open_out "/dev/lp0" in
let oc = open_out "/dev/lp0" in
output_string oc "Hello world!\n";
output_string oc "Hello world!\n";
close_out oc ;;</lang>
close_out oc ;;</syntaxhighlight>


=={{header|Oforth}}==
=={{header|Oforth}}==
<lang Oforth>File new("/dev/lp0") dup open(File.WRITE) "Hello world\n" << close</lang>
<syntaxhighlight lang="oforth">File new("/dev/lp0") dup open(File.WRITE) "Hello world\n" << close</syntaxhighlight>


=={{header|Ol}}==
=={{header|Ol}}==
<lang scheme>
<syntaxhighlight lang="scheme">
(define p (open-output-file "/dev/lp0"))
(define p (open-output-file "/dev/lp0"))
(when p
(when p
(print-to p "Hello world!")
(print-to p "Hello world!")
(close-port p))
(close-port p))
</syntaxhighlight>
</lang>


=={{header|OpenEdge/Progress}}==
=={{header|OpenEdge/Progress}}==
<lang progress>OUTPUT TO PRINTER.
<syntaxhighlight lang="progress">OUTPUT TO PRINTER.
PUT UNFORMATTED "Hello world!" SKIP.
PUT UNFORMATTED "Hello world!" SKIP.
OUTPUT CLOSE.</lang>
OUTPUT CLOSE.</syntaxhighlight>


=={{header|Pascal}}==
=={{header|Pascal}}==
Line 779: Line 779:
{{libheader|Printer}}
{{libheader|Printer}}
Example from the FreePascal documentation:
Example from the FreePascal documentation:
<lang pascal>program testprn;
<syntaxhighlight lang="pascal">program testprn;
uses printer;
uses printer;
var i: integer;
var i: integer;
Line 799: Line 799:
writeln ( 'Done.' )
writeln ( 'Done.' )
{$endif}
{$endif}
end.</lang>
end.</syntaxhighlight>


=={{header|Perl}}==
=={{header|Perl}}==
Assuming that the line printer is attached to /dev/lp0
Assuming that the line printer is attached to /dev/lp0
<lang perl>open O, ">", "/dev/lp0";
<syntaxhighlight lang="perl">open O, ">", "/dev/lp0";
print O "Hello World!\n";
print O "Hello World!\n";
close O;</lang>
close O;</syntaxhighlight>


=={{header|Phix}}==
=={{header|Phix}}==
If you have not got something appropriate attached, this will just hang. Other values you can try, on windows: "AUX", "COM1", "COM2", "LPT1"
If you have not got something appropriate attached, this will just hang. Other values you can try, on windows: "AUX", "COM1", "COM2", "LPT1"
<!--<lang Phix>-->
<!--<syntaxhighlight lang="phix">-->
<span style="color: #004080;">integer</span> <span style="color: #000000;">fn</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">open</span><span style="color: #0000FF;">(</span><span style="color: #008080;">iff</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">platform</span><span style="color: #0000FF;">()=</span><span style="color: #000000;">WIN32</span><span style="color: #0000FF;">?</span><span style="color: #008000;">"PRN"</span><span style="color: #0000FF;">:</span><span style="color: #008000;">"/dev/lp0"</span><span style="color: #0000FF;">),</span><span style="color: #008000;">"w"</span><span style="color: #0000FF;">)</span>
<span style="color: #004080;">integer</span> <span style="color: #000000;">fn</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">open</span><span style="color: #0000FF;">(</span><span style="color: #008080;">iff</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">platform</span><span style="color: #0000FF;">()=</span><span style="color: #000000;">WIN32</span><span style="color: #0000FF;">?</span><span style="color: #008000;">"PRN"</span><span style="color: #0000FF;">:</span><span style="color: #008000;">"/dev/lp0"</span><span style="color: #0000FF;">),</span><span style="color: #008000;">"w"</span><span style="color: #0000FF;">)</span>
<span style="color: #008080;">if</span> <span style="color: #000000;">fn</span><span style="color: #0000FF;">=-</span><span style="color: #000000;">1</span> <span style="color: #008080;">then</span>
<span style="color: #008080;">if</span> <span style="color: #000000;">fn</span><span style="color: #0000FF;">=-</span><span style="color: #000000;">1</span> <span style="color: #008080;">then</span>
Line 819: Line 819:
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
<span style="color: #0000FF;">{}</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">wait_key</span><span style="color: #0000FF;">()</span>
<span style="color: #0000FF;">{}</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">wait_key</span><span style="color: #0000FF;">()</span>
<!--</lang>-->
<!--</syntaxhighlight>-->


=={{header|PHP}}==
=={{header|PHP}}==
<lang PHP><?php
<syntaxhighlight lang="php"><?php
file_put_contents('/dev/lp0', 'Hello world!');
file_put_contents('/dev/lp0', 'Hello world!');
?></lang>
?></syntaxhighlight>


<lang PHP><?php
<syntaxhighlight lang="php"><?php
fclose(STDOUT);
fclose(STDOUT);
$STDOUT = fopen('/dev/lp0', 'a');
$STDOUT = fopen('/dev/lp0', 'a');
echo 'Hello world!';
echo 'Hello world!';
?></lang>
?></syntaxhighlight>


=={{header|Picat}}==
=={{header|Picat}}==
{{works with|Picat}}
{{works with|Picat}}
<syntaxhighlight lang="picat">
<lang Picat>
main =>
main =>
Printer = open("/dev/lp0", write),
Printer = open("/dev/lp0", write),
Line 840: Line 840:
flush(Printer),
flush(Printer),
close(Printer).
close(Printer).
</syntaxhighlight>
</lang>


=={{header|PicoLisp}}==
=={{header|PicoLisp}}==
<lang PicoLisp>(out '(lpr "-P" "Printer01")
<syntaxhighlight lang="picolisp">(out '(lpr "-P" "Printer01")
(prinl "Hello world") )</lang>
(prinl "Hello world") )</syntaxhighlight>


=={{header|PL/I}}==
=={{header|PL/I}}==
<lang pli>
<syntaxhighlight lang="pli">
hello: procedure options(main);
hello: procedure options(main);
put skip list('Hello world.');
put skip list('Hello world.');
end hello;</lang>
end hello;</syntaxhighlight>


=={{header|PostScript}}==
=={{header|PostScript}}==
Technically not really correct, as this has to be sent to the printer directly.
Technically not really correct, as this has to be sent to the printer directly.
It will output Hello world, then, though.
It will output Hello world, then, though.
<lang postscript><</PageSize [595 842]>> setpagedevice % set page size to DIN A4
<syntaxhighlight lang="postscript"><</PageSize [595 842]>> setpagedevice % set page size to DIN A4
/Courier findfont % use Courier
/Courier findfont % use Courier
12 scalefont setfont % 12 pt
12 scalefont setfont % 12 pt
28 802 moveto % 1 cm from the top and left edges
28 802 moveto % 1 cm from the top and left edges
(Hello world) show % draw the string</lang>
(Hello world) show % draw the string</syntaxhighlight>


=={{header|Prolog}}==
=={{header|Prolog}}==
{{works with|SWI Prolog}}
{{works with|SWI Prolog}}
<syntaxhighlight lang="prolog">
<lang Prolog>
:- initialization(main).
:- initialization(main).


Line 871: Line 871:
flush_output(Printer),
flush_output(Printer),
close(Printer).
close(Printer).
</syntaxhighlight>
</lang>


=={{header|PureBasic}}==
=={{header|PureBasic}}==
{{libheader|PureLPRINT}}
{{libheader|PureLPRINT}}
<lang PureBasic>MyPrinter$ = LPRINT_GetDefaultPrinter()
<syntaxhighlight lang="purebasic">MyPrinter$ = LPRINT_GetDefaultPrinter()
If LPRINT_OpenPrinter(MyPrinter$)
If LPRINT_OpenPrinter(MyPrinter$)
If LPRINT_StartDoc("Printing a RC-Task")
If LPRINT_StartDoc("Printing a RC-Task")
Line 884: Line 884:
EndIf
EndIf
LPRINT_ClosePrinter()
LPRINT_ClosePrinter()
EndIf</lang>
EndIf</syntaxhighlight>


=={{header|Python}}==
=={{header|Python}}==
Assuming that the line printer is attached to /dev/lp0:
Assuming that the line printer is attached to /dev/lp0:
<lang python>lp = open("/dev/lp0")
<syntaxhighlight lang="python">lp = open("/dev/lp0")
lp.write("Hello World!\n")
lp.write("Hello World!\n")
lp.close()</lang>
lp.close()</syntaxhighlight>


If the above code gives you the error "IOError: File not open for writing", try:
If the above code gives you the error "IOError: File not open for writing", try:
<lang python>lp = open("/dev/lp0","w")
<syntaxhighlight lang="python">lp = open("/dev/lp0","w")
lp.write("Hello World!\n")
lp.write("Hello World!\n")
lp.close()</lang>
lp.close()</syntaxhighlight>


=={{header|Racket}}==
=={{header|Racket}}==


<lang racket>
<syntaxhighlight lang="racket">
#lang racket
#lang racket
(define (print text)
(define (print text)
Line 911: Line 911:
(λ() (displayln text)))))
(λ() (displayln text)))))
(print "Hello World!")
(print "Hello World!")
</syntaxhighlight>
</lang>


=={{header|Raku}}==
=={{header|Raku}}==
(formerly Perl 6)
(formerly Perl 6)


<lang perl6>my $lp = open '/dev/lp0', :w;
<syntaxhighlight lang="raku" line>my $lp = open '/dev/lp0', :w;
$lp.say: 'Hello World!';
$lp.say: 'Hello World!';
$lp.close;</lang>
$lp.close;</syntaxhighlight>


Or using <code>given</code> to avoid having to write the variable name repeatedly:
Or using <code>given</code> to avoid having to write the variable name repeatedly:


<lang perl6>given open '/dev/lp0', :w {
<syntaxhighlight lang="raku" line>given open '/dev/lp0', :w {
.say: 'Hello World!';
.say: 'Hello World!';
.close;
.close;
}</lang>
}</syntaxhighlight>


=={{header|REXX}}==
=={{header|REXX}}==
Line 931: Line 931:
but a shell command could be used.
but a shell command could be used.
<br><br>In DOS (or under Windows):
<br><br>In DOS (or under Windows):
<lang rexx>/*REXX program prints a string to the (DOS) line printer via redirection to a printer.*/
<syntaxhighlight lang="rexx">/*REXX program prints a string to the (DOS) line printer via redirection to a printer.*/
$= 'Hello World!' /*define a string to be used for output*/
$= 'Hello World!' /*define a string to be used for output*/
'@ECHO' $ ">PRN" /*stick a fork in it, we're all done. */</lang>
'@ECHO' $ ">PRN" /*stick a fork in it, we're all done. */</syntaxhighlight>


=={{header|Ring}}==
=={{header|Ring}}==
<lang ring>
<syntaxhighlight lang="ring">
lp = fopen("/dev/lp0","w") fputs(lp,"Hello world!") fclose(lp)
lp = fopen("/dev/lp0","w") fputs(lp,"Hello world!") fclose(lp)
</syntaxhighlight>
</lang>


=={{header|RPG}}==
=={{header|RPG}}==
{{works with|ILE RPG}}
{{works with|ILE RPG}}
<syntaxhighlight lang="rpg">
<lang RPG>
Fqsysprt O F 80 printer
Fqsysprt O F 80 printer
C except
C except
Line 948: Line 948:
Oqsysprt E
Oqsysprt E
O 11 'Hello world'
O 11 'Hello world'
</syntaxhighlight>
</lang>


=={{header|Ruby}}==
=={{header|Ruby}}==
Assumes that <code>lpr</code> command reaches printer.
Assumes that <code>lpr</code> command reaches printer.


<lang ruby>open("| lpr", "w") { |f| f.puts "Hello World!" }</lang>
<syntaxhighlight lang="ruby">open("| lpr", "w") { |f| f.puts "Hello World!" }</syntaxhighlight>


=={{header|Run BASIC}}==
=={{header|Run BASIC}}==
<lang runbasic> shell$("echo \"Hello World!\" | lpr")</lang>
<syntaxhighlight lang="runbasic"> shell$("echo \"Hello World!\" | lpr")</syntaxhighlight>


=={{header|Rust}}==
=={{header|Rust}}==
===Unix===
===Unix===
<lang rust>use std::fs::OpenOptions;
<syntaxhighlight lang="rust">use std::fs::OpenOptions;
use std::io::Write;
use std::io::Write;


Line 966: Line 966:
let file = OpenOptions::new().write(true).open("/dev/lp0").unwrap();
let file = OpenOptions::new().write(true).open("/dev/lp0").unwrap();
file.write(b"Hello, World!").unwrap();
file.write(b"Hello, World!").unwrap();
}</lang>
}</syntaxhighlight>


=={{header|Salmon}}==
=={{header|Salmon}}==
Assuming /dev/lp0 accesses the printer:
Assuming /dev/lp0 accesses the printer:


<lang Salmon>open_output_text_file("/dev/lp0").print("Hello World!");</lang>
<syntaxhighlight lang="salmon">open_output_text_file("/dev/lp0").print("Hello World!");</syntaxhighlight>


Assuming lpr is a command that prints to a printer:
Assuming lpr is a command that prints to a printer:
<lang Salmon>`echo "Hello World!" | lpr`;</lang>
<syntaxhighlight lang="salmon">`echo "Hello World!" | lpr`;</syntaxhighlight>


=={{header|Scala}}==
=={{header|Scala}}==
{{libheader|Scala}}
{{libheader|Scala}}
===All platforms===
===All platforms===
<lang scala>import java.awt.print.PrinterException
<syntaxhighlight lang="scala">import java.awt.print.PrinterException
import scala.swing.TextArea
import scala.swing.TextArea


Line 993: Line 993:
}
}
println("Document printed.")
println("Document printed.")
}</lang>
}</syntaxhighlight>


===[[Unix]]===
===[[Unix]]===
Assuming device is attached to lp0
Assuming device is attached to lp0
<lang Scala>object LinePrinter extends App {
<syntaxhighlight lang="scala">object LinePrinter extends App {
import java.io.{ FileWriter, IOException }
import java.io.{ FileWriter, IOException }
{
{
Line 1,004: Line 1,004:
lp0.close()
lp0.close()
}
}
}</lang>
}</syntaxhighlight>


=={{header|Scheme}}==
=={{header|Scheme}}==
===[[Unix]]===
===[[Unix]]===
Assuming device is attached to lp0
Assuming device is attached to lp0
<lang scheme>(call-with-output-file "/dev/lp0"
<syntaxhighlight lang="scheme">(call-with-output-file "/dev/lp0"
  (lambda (printer)
  (lambda (printer)
    (write "Hello World!" printer)))</lang>
    (write "Hello World!" printer)))</syntaxhighlight>


=={{header|Seed7}}==
=={{header|Seed7}}==
Assuming that the line printer is attached to /dev/lp0:
Assuming that the line printer is attached to /dev/lp0:
<lang seed7>$ include "seed7_05.s7i";
<syntaxhighlight lang="seed7">$ include "seed7_05.s7i";
const proc: main is func
const proc: main is func
Line 1,024: Line 1,024:
writeln(lp, "Hello world!");
writeln(lp, "Hello world!");
close(lp);
close(lp);
end func;</lang>
end func;</syntaxhighlight>


=={{header|Sidef}}==
=={{header|Sidef}}==
<lang ruby>Sys.open(\var fh, '>', '/dev/lp0') \
<syntaxhighlight lang="ruby">Sys.open(\var fh, '>', '/dev/lp0') \
&& fh.say("Hello World!") \
&& fh.say("Hello World!") \
&& fh.close</lang>
&& fh.close</syntaxhighlight>


=={{header|Simula}}==
=={{header|Simula}}==
{{works with|SIMULA-67}}
{{works with|SIMULA-67}}
<lang simula>BEGIN
<syntaxhighlight lang="simula">BEGIN
OUTTEXT("Hello World!");
OUTTEXT("Hello World!");
OUTIMAGE
OUTIMAGE
END</lang>
END</syntaxhighlight>


=={{header|Smalltalk}}==
=={{header|Smalltalk}}==
{{works with|Smalltalk/X}}
{{works with|Smalltalk/X}}
portable (dispatches to one of bellow):
portable (dispatches to one of bellow):
<lang smalltalk>s := PrinterStream defaultPrinter new.
<syntaxhighlight lang="smalltalk">s := PrinterStream defaultPrinter new.
s nextPutLine:'Hello, world'.
s nextPutLine:'Hello, world'.
s close</lang>
s close</syntaxhighlight>
===[[Unix]]===
===[[Unix]]===
<lang smalltalk>s := PipeStream writingTo:'lpr'.
<syntaxhighlight lang="smalltalk">s := PipeStream writingTo:'lpr'.
s nextPutLine:'Hello, world'.
s nextPutLine:'Hello, world'.
s close.</lang>
s close.</syntaxhighlight>
alternative:
alternative:
<lang smalltalk>'/dev/lp0' asFilename writingFileDo:[:s |
<syntaxhighlight lang="smalltalk">'/dev/lp0' asFilename writingFileDo:[:s |
s nextPutLine:'Hello, world'.
s nextPutLine:'Hello, world'.
]</lang>
]</syntaxhighlight>
===[[Windows]]===
===[[Windows]]===
<lang smalltalk>s := WinPrinterStream new.
<syntaxhighlight lang="smalltalk">s := WinPrinterStream new.
s nextPutLine:'Hello, world'.
s nextPutLine:'Hello, world'.
s close.</lang>
s close.</syntaxhighlight>


=={{header|SNOBOL4}}==
=={{header|SNOBOL4}}==
Line 1,063: Line 1,063:
By default, the variable "input" is associated with standard input, and the variable "output" is associated with standard output.
By default, the variable "input" is associated with standard input, and the variable "output" is associated with standard output.


<lang SNOBOL4> output = "Hello, world."</lang>
<syntaxhighlight lang="snobol4"> output = "Hello, world."</syntaxhighlight>


You can associate the variable "print" with lpt1 (the default local printer port) using the output() function:
You can associate the variable "print" with lpt1 (the default local printer port) using the output() function:


<lang SNOBOL4> output(.print,25,"lpt1")
<syntaxhighlight lang="snobol4"> output(.print,25,"lpt1")
print = "Hello, world."</lang>
print = "Hello, world."</syntaxhighlight>


=={{header|Swift}}==
=={{header|Swift}}==
<lang Swift>import Foundation
<syntaxhighlight lang="swift">import Foundation


let out = NSOutputStream(toFileAtPath: "/dev/lp0", append: true)
let out = NSOutputStream(toFileAtPath: "/dev/lp0", append: true)
Line 1,077: Line 1,077:
out?.open()
out?.open()
out?.write(UnsafePointer<UInt8>(data!.bytes), maxLength: data!.length)
out?.write(UnsafePointer<UInt8>(data!.bytes), maxLength: data!.length)
out?.close()</lang>
out?.close()</syntaxhighlight>


=={{header|Tcl}}==
=={{header|Tcl}}==


===[[Unix]]===
===[[Unix]]===
<lang tcl>exec lp << "Hello World!"</lang>
<syntaxhighlight lang="tcl">exec lp << "Hello World!"</syntaxhighlight>
<lang tcl>set f [open |lp w]
<syntaxhighlight lang="tcl">set f [open |lp w]
puts $f "Hello World!"
puts $f "Hello World!"
close $f</lang>
close $f</syntaxhighlight>


===[[Windows]]===
===[[Windows]]===


<lang tcl>set f [open prn w]
<syntaxhighlight lang="tcl">set f [open prn w]
puts $f "Hello World!"
puts $f "Hello World!"
close $f</lang>
close $f</syntaxhighlight>


=={{header|UNIX Shell}}==
=={{header|UNIX Shell}}==
Use ''one'' of the following lines.
Use ''one'' of the following lines.


<lang bash># Use the default printer queue, with lp(1) or lpr(1).
<syntaxhighlight lang="bash"># Use the default printer queue, with lp(1) or lpr(1).
# 1. The system must have a printer queue.
# 1. The system must have a printer queue.
# 2. The printer queue must understand plain text.
# 2. The printer queue must understand plain text.
Line 1,116: Line 1,116:
echo 'Hello World!' >/dev/lp0
echo 'Hello World!' >/dev/lp0
echo 'Hello World!' >/dev/lpt0
echo 'Hello World!' >/dev/lpt0
echo 'Hello World!' >/dev/ulpt0</lang>
echo 'Hello World!' >/dev/ulpt0</syntaxhighlight>


=={{header|Wisp}}==
=={{header|Wisp}}==
===[[Unix]]===
===[[Unix]]===
Assuming that the device is attached to lp0
Assuming that the device is attached to lp0
<lang wisp>call-with-output-file "/dev/lp0"
<syntaxhighlight lang="wisp">call-with-output-file "/dev/lp0"
λ : printer
λ : printer
write "Hello World!" printer</lang>
write "Hello World!" printer</syntaxhighlight>


=={{header|Wren}}==
=={{header|Wren}}==
It is not currently possible to communicate with the printer using Wren-cli. So we need to write a minimal embedded program (no error checking) so the C host can do this for us.
It is not currently possible to communicate with the printer using Wren-cli. So we need to write a minimal embedded program (no error checking) so the C host can do this for us.
<lang ecmascript>/* hello_world_line_printer.wren */
<syntaxhighlight lang="ecmascript">/* hello_world_line_printer.wren */


class C {
class C {
Line 1,133: Line 1,133:
}
}


C.lprint("Hello World!")</lang>
C.lprint("Hello World!")</syntaxhighlight>
<br>
<br>
We now embed this in the following C program, compile and run it.
We now embed this in the following C program, compile and run it.
<lang c>/* gcc hello_world_line_printer.c -o hello_world_line_printer -lwren -lm */
<syntaxhighlight lang="c">/* gcc hello_world_line_printer.c -o hello_world_line_printer -lwren -lm */


#include <stdio.h>
#include <stdio.h>
Line 1,197: Line 1,197:
free(script);
free(script);
return 0;
return 0;
}</lang>
}</syntaxhighlight>


=={{header|X86 Assembly}}==
=={{header|X86 Assembly}}==
<lang asm>;Assemble with: tasm, tlink /t
<syntaxhighlight lang="asm">;Assemble with: tasm, tlink /t
;assume direction bit is clear (so si increments)
;assume direction bit is clear (so si increments)
.model tiny
.model tiny
Line 1,217: Line 1,217:


msg db "Hello World!", 0ch, 0 ;0ch = form feed (for laser printer)
msg db "Hello World!", 0ch, 0 ;0ch = form feed (for laser printer)
end start</lang>
end start</syntaxhighlight>


=={{header|XPL0}}==
=={{header|XPL0}}==
<lang XPL0>code Text=12;
<syntaxhighlight lang="xpl0">code Text=12;
Text(2, "Hello World!
Text(2, "Hello World!
");</lang>
");</syntaxhighlight>


The 2 directs the output to the printer (LPT1).
The 2 directs the output to the printer (LPT1).