ruby-uebungen/Assignment_006/solution/readme.md

13 lines
226 B
Markdown
Raw Normal View History

2023-05-25 17:47:19 +02:00
# Lösung: Splat
2023-05-25 17:49:42 +02:00
2023-05-25 17:47:19 +02:00
```ruby
ort = [ 49.468408, 8.482504, \
'Hochschule Mannheim', \
'Gebäude A', \
'Fakultät für Informatik', \
'Gute Ausbildung' ]
laenge, breite, name, *attribute = ort
```