4 lines
35 B
Ruby
4 lines
35 B
Ruby
|
|
def swap(a, b)
|
||
|
|
return b, a
|
||
|
|
end
|