fpc/tests/webtbs/tw0701a.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

18 lines
240 B
ObjectPascal

var
s : string;
procedure UseString(const as : string);
begin
s:=as;
end;
procedure MyExit;
begin
Writeln('Last call to UseString was with as = ',s);
end;
begin
exitproc:=@MyExit;
UseString('Dummy test');
end.