Files
nx_post_support/server/src/test_tcl.py
T
2025-07-25 16:02:39 +02:00

11 lines
143 B
Python

from tools.parser import Parser
def main():
parser = Parser(True)
parser.parse("puts hello")
if __name__ == "__main__":
main()