First working state

This commit is contained in:
2025-04-09 16:54:52 +01:00
commit 0ecee9a71b
16 changed files with 374 additions and 0 deletions

6
hello.py Normal file
View File

@@ -0,0 +1,6 @@
def main():
print("Hello from enterpreter!")
if __name__ == "__main__":
main()