diff options
Diffstat (limited to 'main.adb')
| -rw-r--r-- | main.adb | 11 |
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; |
