blob: e7a48270a66fb260c39f5643cc959c5145a8f220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Program Example48;
{ Program to demonstrate the BaseName function. }
Uses oldlinux;
Var S : String;
begin
S:=FExpand(Paramstr(0));
Writeln ('This program is called : ',Basename(S,''));
end.
|