Hello world/Line printer: Difference between revisions

no edit summary
No edit summary
Line 633:
The CR+LF can simply be included in the string as shown.
Another method is to include the CR+LF control characters as ^M^J.
 
=={{header|ERRE))==
<lang ERRE>
! Hello World in ERRE language
PROGRAM HELLO
BEGIN
!$REDIR
PRINT("Hello World !")
!NOREDIR
END PROGRAM
</lang>
 
Prints on LPT1: (if exists) without opening a file
Anonymous user