RosettaCodeData/Task/Logical-operations/Delphi/logical-operations.delphi
2023-07-01 13:44:08 -04:00

2 lines
69 B
Text

{ exclusive or }
writeLn(A:5, ' xor', B:6, ' yields', A xor B:7);