ruby-uebungen/Assignment_006/solution/readme.md

13 lines
226 B
Markdown

# Lösung: Splat
```ruby
ort = [ 49.468408, 8.482504, \
'Hochschule Mannheim', \
'Gebäude A', \
'Fakultät für Informatik', \
'Gute Ausbildung' ]
laenge, breite, name, *attribute = ort
```