Adedee / ruby

0 stars 0 forks source link

Exercise 7 #8

Open Adedee opened 8 years ago

Adedee commented 8 years ago

https://github.com/Adedee/ruby/commit/55c88991b7b84192b263aa8dc0978b3ea69bb772

Overwrite the default 'to_s' method such that it inverses the case of each letter.Eg: "hello WORLD".to_s -> "HELLO world"

DOkwufulueze commented 8 years ago

Overwrite the default to_s method not create a new class for which to_s is implemented differently. Hint: Monkey Patching.

What does Inverser mean?

Name classes according to files named in lower cases.