Hello world/Text: Difference between revisions

Content added Content deleted
No edit summary
(Added Modula-2)
Line 688: Line 688:
{{works with|mIRC}}
{{works with|mIRC}}
<lang mirc>alias saygoodbye { echo -a Goodbye! }</lang>
<lang mirc>alias saygoodbye { echo -a Goodbye! }</lang>

=={{header|Modula-2}}==
<lang modula2>MODULE Hello;
IMPORT InOut;

BEGIN
InOut.WriteString('Hello World!');
InOut.WriteLn
END Hello.</lang>


=={{header|Modula-3}}==
=={{header|Modula-3}}==