3 lines
46 B
Haskell
3 lines
46 B
Haskell
|
|
swap :: (a, b) -> (b, a)
|
||
|
|
swap (x, y) = (y, x)
|