about summary refs log tree commit diff stats
path: root/ada
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2022-10-03 00:01:59 +0000
committerelioat <elioat@tilde.institute>2022-10-03 00:01:59 +0000
commit7dd1a12530cf9bea24538c7d95835ba5cd71ec46 (patch)
treefa712feb394a8db7380b080989efcc9b671ba35d /ada
parent4d8e1a29b7eb58e2ee6de2289a67397594873adb (diff)
downloadtour-7dd1a12530cf9bea24538c7d95835ba5cd71ec46.tar.gz
*
Diffstat (limited to 'ada')
-rw-r--r--ada/hi.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/ada/hi.adb b/ada/hi.adb
new file mode 100644
index 0000000..be2bd48
--- /dev/null
+++ b/ada/hi.adb
@@ -0,0 +1,6 @@
+with Ada.Text_IO;
+use Ada.Text_IO;
+procedure Hello is
+begin
+   Put_Line ("Hello, world!");
+end Hello;