ruby-uebungen/Assignment_020/solution/readme.md

14 lines
201 B
Markdown
Raw Normal View History

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