aboutsummaryrefslogtreecommitdiff
path: root/main.adb
diff options
context:
space:
mode:
Diffstat (limited to 'main.adb')
-rw-r--r--main.adb11
1 files changed, 11 insertions, 0 deletions
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;