Hello world/Standard error: Difference between revisions

+ Pascal
(+ Pascal)
Line 296:
=={{header|PARI/GP}}==
<lang parigp>error("Goodbye, World!")</lang>
 
=={{header|Pascal}}==
{{Works with|Free Pascal}}
<lang pascal>program byeworld;
begin
writeln(StdErr, 'Goodbye, World!');
end.</lang>
 
=={{header|Perl}}==
Anonymous user