diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-16 15:22:40 +1200 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-16 15:22:40 +1200 |
commit | b3455e502f4491af22e190a14aba9565f534bb59 (patch) | |
tree | 23b823b177e8639fb5d42e17311bdc2d70a016b2 /hereiam/here_i_am.ads | |
parent | e62c2e2403d072640f0400c499f1dfd99e938c16 (diff) |
Sokoban can now find itself to find shared data after install
Diffstat (limited to 'hereiam/here_i_am.ads')
-rw-r--r-- | hereiam/here_i_am.ads | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/hereiam/here_i_am.ads b/hereiam/here_i_am.ads new file mode 100644 index 0000000..367ac57 --- /dev/null +++ b/hereiam/here_i_am.ads @@ -0,0 +1,25 @@ + + +-- Programmed by Jedidiah Barber +-- Released into the public domain + + +package Here_I_Am is + + + Where_Is_Error : exception; + + + -- Provides the full name and path of the running executable + function Executable + return String; + + + -- Provides the full name and path of the running library + function Module + return String; + + +end Here_I_Am; + + |