7 lines
66 B
ObjectPascal
7 lines
66 B
ObjectPascal
|
|
type TFunc = function : integer;
|
||
|
|
|
||
|
|
var t : TFunc;
|
||
|
|
|
||
|
|
begin
|
||
|
|
t(2);
|
||
|
|
end.
|