<' struct hello { say_hello() is undefined ; }; // Extend the orginal struct // So that we can define functionality for method extend hello { say_hello() is { out("Hello World"); }; }; extend sys { hello : hello; run() is also { hello.say_hello(); }; }; '>