forked from M-Labs/nac3
12 lines
149 B
Python
12 lines
149 B
Python
from language import *
|
|
|
|
|
|
class Demo:
|
|
@kernel
|
|
def run(self: bool) -> bool:
|
|
return False
|
|
|
|
|
|
if __name__ == "__main__":
|
|
Demo().run()
|