Files
luban-lite-t3e-pro/packages/third-party/micropython-1.13.0/tools/mpy-cross/hellortt.py

13 lines
214 B
Python
Raw Normal View History

2025-09-30 11:56:06 +08:00
# import os
class HelloRtt:
def __repr__(self):
self.__call__()
return ""
def __call__(self):
print("hello world!!")
print("hello RTT")
hello = HelloRtt()