RosettaCodeData/Task/Twos-complement/PascalABC.NET/twos-complement.pas

6 lines
56 B
ObjectPascal

begin
var x := 56;
x := not x + 1;
Print(x);
end.