pascalabcnet/TestSuite/PowerConst.pas

5 lines
51 B
ObjectPascal
Raw Permalink Normal View History

const a = 2 ** 3;
begin
Assert(a = 8);
end.