Blame lazarus/console/hello-world/helloworld.lpr

ab6427
program helloworld;
ab6427
ab6427
var
ab6427
  s: string;
ab6427
begin
ab6427
  Writeln('Hello world!');
ab6427
  Readln(s);
ab6427
end.