diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-05 23:06:26 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-05 23:06:26 +1300 |
commit | 10286c0b22f3111e74bf699f224a4e8061626d4c (patch) | |
tree | 172b3198153258b54aa4fd4540e7231ccfc66b7a /src/here_i_am.ads |
Initial commit
Diffstat (limited to 'src/here_i_am.ads')
-rw-r--r-- | src/here_i_am.ads | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/here_i_am.ads b/src/here_i_am.ads new file mode 100644 index 0000000..7276a9a --- /dev/null +++ b/src/here_i_am.ads @@ -0,0 +1,22 @@ + + +-- Programmed by Jedidiah Barber +-- Released into the public domain + + +package Here_I_Am is + + + -- 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; + + |