diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-16 15:51:58 +1200 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-16 15:51:58 +1200 |
commit | baa3a346cde2c2c965243e554a15ed3bd6f5c7fe (patch) | |
tree | f8ec8376a6a42053e15cb9607b0fef17bb4f321d /src/main.adb | |
parent | b3455e502f4491af22e190a14aba9565f534bb59 (diff) |
Code style improvements, constants marked as constant
Diffstat (limited to 'src/main.adb')
-rw-r--r-- | src/main.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.adb b/src/main.adb index 41b106e..cbdca0c 100644 --- a/src/main.adb +++ b/src/main.adb @@ -9,8 +9,11 @@ with function Main return Integer is begin + Sokoban.Load_Level (Sokoban.LevelID'First); Sokoban.Show; return FLTK.Run; + end Main; + |