* made code able to run

This commit is contained in:
pierre 1999-01-15 17:47:49 +00:00
parent 039edd5b4c
commit 50182fcd57

View File

@ -1,6 +1,12 @@
var
p : procedure(w : word);
procedure pp(w :word);
begin
Writeln(w);
end;
begin
p:=@pp;
p(1234);
end.