Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Contributors/SRobillard/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Ada

To install the Ada compiler on Debian like systems:

`sudo apt install gnat`

Then compile with:

`gnatmake hello_world.adb`

This will generate an executable **hello_world** file that can be run with the following command:

`./hello_world.`
7 changes: 7 additions & 0 deletions Contributors/SRobillard/hello_world.adb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
with Text_IO; use Text_IO;

procedure hello_world is
begin
Put_Line("Hello World.");
end hello_world;