class Apple { greet() : Object {(new IO).out_string("Hello World!")}; }; class Orange inherits Apple { greet() : Object {(new IO).out_string("Hola Mundo!")}; }; class ...