ruby-uebungen/Assignment_021
Thomas Smits fe2c1c6eb6 Update of exercises 2023-05-25 17:47:19 +02:00
..
solution Update of exercises 2023-05-25 17:47:19 +02:00
readme.md Update of exercises 2023-05-25 17:47:19 +02:00

readme.md

Closure

📆 Fällig: ---- 📆 Musterlösung

Schreiben Sie eine Ruby-Funktion create_counter, die ein Proc-Object zurück gibt. Das Proc-Objekt soll bei jedem Aufruf eine aufsteigende Zahl zurückgeben.

Beispiel:

p = create_counter
puts p.call # -> 1
puts p.call # -> 2