Added Delphi

This commit is contained in:
Mike Donaghy
2007-12-01 16:33:05 -05:00
parent af0e9b2891
commit b3d80bf3d6

8
delphi.delphi Normal file
View File

@@ -0,0 +1,8 @@
// Hello World in Delphi
Program Hello_World;
($APPTYPE CONSOLE)
Begin
WriteLn('Hello World');
End.