diff --git a/Contributors/SRobillard/README.md b/Contributors/SRobillard/README.md new file mode 100644 index 0000000..66c87b5 --- /dev/null +++ b/Contributors/SRobillard/README.md @@ -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.` diff --git a/Contributors/SRobillard/hello_world.adb b/Contributors/SRobillard/hello_world.adb new file mode 100644 index 0000000..9a732a5 --- /dev/null +++ b/Contributors/SRobillard/hello_world.adb @@ -0,0 +1,7 @@ +with Text_IO; use Text_IO; + +procedure hello_world is +begin + Put_Line("Hello World."); +end hello_world; +