pascalabcnet/TestSuite/const3.pas

14 lines
134 B
ObjectPascal
Raw Permalink Normal View History

2017-08-26 16:01:25 +03:00
const
h = Round(1.3);
h2 = h;
procedure Test;
const dh = h;
begin
assert(dh = 1);
end;
begin
Test;
assert(h2 = h);
end.