forked from M-Labs/nac3
13 lines
135 B
Python
13 lines
135 B
Python
from language import *
|
|
|
|
|
|
@kernel
|
|
class Demo:
|
|
@kernel
|
|
def run(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
Demo().run()
|