nac3_sca/nac3embedded/demo.py

12 lines
149 B
Python
Raw Normal View History

2020-12-18 23:44:45 +08:00
from language import *
class Demo:
@kernel
2020-12-19 16:23:12 +08:00
def run(self: bool) -> bool:
return False
2020-12-18 23:44:45 +08:00
if __name__ == "__main__":
Demo().run()