ruby-uebungen/Assignment_028/solution/readme.md

6 lines
74 B
Markdown
Raw Normal View History

2023-05-25 17:47:19 +02:00
# Lösung: Iteratoren auf Zahlen
2023-05-23 09:19:31 +02:00
2023-05-25 17:49:42 +02:00
```ruby
2023-05-25 17:47:19 +02:00
10.downto(0) { |n| puts n }
2023-05-23 09:19:31 +02:00
```