From 10286c0b22f3111e74bf699f224a4e8061626d4c Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sat, 5 Apr 2025 23:06:26 +1300 Subject: Initial commit --- src/here_i_am.ads | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/here_i_am.ads (limited to 'src/here_i_am.ads') 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; + + -- cgit