Initial, working but only with viewport height adjusted a little bit

This commit is contained in:
2026-03-28 16:12:33 +01:00
commit 7d94dee26b
16 changed files with 857 additions and 0 deletions

10
test.py Normal file
View File

@@ -0,0 +1,10 @@
def main():
print("hello world")
x = 50
for i in range(x):
print(i)
if __name__ == "__main__":
main()