DEV Community

Discussion on: "Hello, World!" but in 30 different languages!!!

Collapse
 
bero profile image
Roland Bengtsson

But you miss Delphi!

program HelloWorld;

{$APPTYPE CONSOLE}

begin
  WriteLn('Hello World');
end.