RosettaCodeData/Task/Twos-complement/PascalABC.NET/twos-complement.pas
2024-07-13 15:19:22 -07:00

5 lines
56 B
ObjectPascal

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