This website requires JavaScript.
Explore
Help
Sign In
smits
/
ruby-uebungen
Watch
1
Star
3
Fork
You've already forked ruby-uebungen
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
fe2c1c6eb6
ruby-uebungen
/
Assignment_004
/
solution
/
readme.md
313 B
Raw
Blame
History
Lösung: Parallele Zuweisung
```ruby def swap(a, b) [ b, a ] end
x ="Hallo" y = "Welt"
puts "#{x} #{y}" x, y = swap(x, y) puts "#{x} #{y}"