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