RosettaCodeData/Task/Generic-swap/Picat/generic-swap-2.picat
2023-07-01 13:44:08 -04:00

6 lines
97 B
Text

A = 1,
B = 2,
T = A, % Assuming that T is not used elsewhere in the clause
A := B,
B := T,
% ...