fpc/tests/tbs0253.pp
1999-05-30 23:07:32 +00:00

19 lines
195 B
ObjectPascal

procedure test(w : word);forward;
procedure test(a : string);
begin
Writeln(a);
test(20);
end;
procedure test(w :word);
begin
writeln(w);
end;
begin
test('test');
test(32);
end.