From 6f2fc1af33d8f1ead133f9ea4ef05c026be5c9e2 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 6 Dec 2019 21:42:58 +0100 Subject: Initial commit --- main.adb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 main.adb (limited to 'main.adb') diff --git a/main.adb b/main.adb new file mode 100644 index 0000000..4105856 --- /dev/null +++ b/main.adb @@ -0,0 +1,11 @@ +with Ada.Text_IO; +use Ada.Text_IO; + +with SDL; + +procedure Main is +begin + if not SDL.Initialise then + Put("Error"); + end if; +end Main; -- cgit