program routineParameterDemo(output);
procedure foo(function f: Boolean);
begin
writeLn(f);
end;
function bar: Boolean;
bar := false
foo(bar);
end.