ruby-uebungen/Assignment_019/solution/readme.md

13 lines
178 B
Markdown
Raw Permalink Normal View History

2023-05-25 17:47:19 +02:00
# Lösung: Callback mit Block
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
def rechner(a, b)
ergebnis = yield a, b
ergebnis * 2
2023-05-23 09:19:31 +02:00
end
2023-05-25 17:47:19 +02:00
puts rechner(5, 4) { |a, b| a + b }
puts rechner(5, 4) { |a, b| a - b }
2023-05-23 09:19:31 +02:00
```