Что будет напечатано программой?
var b: integer;
function g(var x: integer): integer;
begin g:=x; x:=0 end;
begin
b:=2; write(g(b), g(b))
end.