pascalabcnet/TestSuite/hset1.pas

9 lines
163 B
ObjectPascal
Raw Permalink Normal View History

2016-12-04 16:41:41 +03:00
begin
var h1 := HSet(1,2,3);
var h2 := HSet(1,2,3);
assert(h1=h2);
h1 := HSet(1,2,3);
h2 := HSet(1,2);
assert(h1 > h2);
assert(h2 < h1);
end.