9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
![]() |
// Hello World in Delphi
|
||
|
Program Hello_World;
|
||
|
|
||
|
($APPTYPE CONSOLE)
|
||
|
|
||
|
Begin
|
||
|
WriteLn('Hello World');
|
||
|
End.
|