python import clime class MyCommand(clime.Command): def __init__(self): super().__init__() def run(self): print("Hello, Clime!") if __name__ == '__main__': clime.start()