Hello world/Line printer: Difference between revisions

AWK, Factor are also incorrect.
(Marked other incorrects, Factor may also be incorrect)
(AWK, Factor are also incorrect.)
Line 20:
 
=={{header|AWK}}==
{{incorrect|AWK|Outputs to a regular file named "prn", not a line printer.}}
 
<lang AWK>
BEGIN { print("Hello World!") >"prn" }
Line 60 ⟶ 62:
 
=={{header|Factor}}==
{{incorrect|Factor|Outputs to stdout, not a line printer.}}
 
<lang factor>
USE: io
Anonymous user