RosettaCodeData/Task/Logical-operations/Delphi/logical-operations.delphi

3 lines
69 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
{ exclusive or }
writeLn(A:5, ' xor', B:6, ' yields', A xor B:7);