aboutsummaryrefslogtreecommitdiff
path: root/src/here_i_am.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/here_i_am.ads')
-rw-r--r--src/here_i_am.ads22
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;
+
+