Parallele Zuweisung

a = 27
b = "x"
c = a, b    # Array
a, b = b, a # Vertauschen
d, e = c    # Aus Array auslesen
p a, b, c, d, e

Ergebnis:
"x"
27
[27, "x"]
27
"x"

hashes.rb