import test

class MyCallback(test.Callback):
    def hello(self, x):
        print x

caller = test.Caller()
caller.set_callback(MyCallback())
caller.say_hello(5)
