This website requires JavaScript.
Explore
Help
Sign In
smits
/
ruby-uebungen
Watch
1
Star
3
Fork
You've already forked ruby-uebungen
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
25d5ac7ffd
ruby-uebungen
/
Assignment_017
/
solution
/
readme.md
467 B
Raw
Blame
History
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