diff options
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; + + |