aboutsummaryrefslogtreecommitdiff
path: root/src/here_i_am.ads
blob: 7276a9a95e950a254f72ba795d9c78a3f76b39ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;