Skip to content

Commit

Permalink
Merge pull request #35 from samuel-tonini/master
Browse files Browse the repository at this point in the history
Added Hello World Program in Delphi. #9
  • Loading branch information
agarwalrounak authored Oct 2, 2019
2 parents 499d5b2 + 4fd2676 commit 6af89d2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
- [Ramy Fetteha](https://github.com/NoirFLamme)
- [Randil Tennakoon](https://github.com/randiltennakoon)
- [Rounak Agarwal](https://github.com/agarwalrounak)
- [Samuel Tonini](https://github.com/samuel-tonini)
- [Thomas Windt](https://github.com/WOLFI3654)
- [viewless](https://github.com/viewless)
12 changes: 12 additions & 0 deletions code/Delphi/hello_world.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
program hello_world;

{$APPTYPE CONSOLE}

{$R *.res}

uses
System.SysUtils;

begin
Writeln('Hello World!');
end.

0 comments on commit 6af89d2

Please sign in to comment.