ruby-uebungen/Assignment_004/solution
Thomas Smits 58bc23516c Update of exercises 2023-05-25 17:49:42 +02:00
..
readme.md Update of exercises 2023-05-25 17:49:42 +02:00

readme.md

Lösung: Parallele Zuweisung

def swap(a, b)
  [ b, a ]
end

x ="Hallo"
y = "Welt"

puts "#{x} #{y}"
x, y = swap(x, y)
puts "#{x} #{y}"