# Lösung: Parallele Zuweisung
```ruby
def swap(a, b)
[ b, a ]
end
x ="Hallo"
y = "Welt"
puts "#{x} #{y}"
x, y = swap(x, y)
```