ruby-uebungen/Assignment_010/solution
Thomas Smits fe2c1c6eb6 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

Lösung: Default Parameter





























































```ruby def produkt(a, b, c = 1, d = 1) a * b * c * d end

puts produkt(5, 7) puts produkt(5, 7, 8) puts produkt(5, 7, 8, 3)