hellortt.py 202 B

123456789101112
  1. # import os
  2. class HelloRtt:
  3. def __repr__(self):
  4. self.__call__()
  5. return ""
  6. def __call__(self):
  7. print("hello world!!")
  8. print("hello RTT")
  9. hello = HelloRtt()