RosettaCodeData/Task/Delegates/Zkl/delegates-4.zkl

7 lines
221 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
Logger.log("this is a test"); //-->nada
Logger.dst=Console;
Logger.log("this is a test 2"); //-->writes to Console
class B(Logger){ log("Hello from ",self,"'s constructor"); }
B(); //-->Hello from Class(B)'s constructor