ruby-uebungen/Assignment_016/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: Geschachtelte Methoden



















































```ruby class Bomb def self.activate def explode puts "Booooommmmm" end end end

b1 = Bomb.new b2 = Bomb.new b1.explode # Fehler

Bomb::activate b1.explode b2.explode