summaryrefslogtreecommitdiff
path: root/fpcdocs/unutilex/ex48.pp
blob: 059ac274371762dd335860c79b06c4118ed75686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Program Example48;

{ Program to demonstrate the BaseName function. }

Uses Dos,Unix,UnixUtil;

Var S : String;

begin
  S:=FExpand(Paramstr(0));
  Writeln ('This program is called : ',Basename(S,''));
end.