RosettaCodeData/Task/Generic-swap/C-sharp/generic-swap-3.cs
2023-07-01 13:44:08 -04:00

3 lines
39 B
C#

int a = 1;
int b = 2;
(a, b) = (b, a);