RosettaCodeData/Task/Hello-world-Text/Delphi/hello-world-text.delphi

6 lines
81 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
program ProjectGoodbye;
{$APPTYPE CONSOLE}
begin
2015-11-18 06:14:39 +00:00
WriteLn('Hello world!');
2013-04-10 21:29:02 -07:00
end.