pascalabcnet/TestSuite/ord1.pas

10 lines
146 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
const c = ord('2')+10;
c2 = byte(100)-byte(50);
var v := ord('2')+10;
begin
assert(c=ord('2')+10);
assert(v=c);
assert(c2=50);
end.