Files
luban-lite-t3e-pro/packages/third-party/micropython-1.13.0/tools/mpy-cross/hellortt.py
刘可亮 803cac77d5 V1.0.6
2024-09-03 11:16:08 +08:00

13 lines
202 B
Python
Executable File

# import os
class HelloRtt:
def __repr__(self):
self.__call__()
return ""
def __call__(self):
print("hello world!!")
print("hello RTT")
hello = HelloRtt()