Add 'engine/' from commit 'a8e37fc010'

git-subtree-dir: engine
git-subtree-mainline: b74841629e
git-subtree-split: a8e37fc010
This commit is contained in:
Sara Gerretsen 2026-03-13 11:22:19 +01:00
commit c3f9669b10
14113 changed files with 7458101 additions and 0 deletions

View file

@ -0,0 +1,57 @@
func test():
# 20 levels of nesting (and then some).
if true:
print("1")
if true:
print("2")
if true:
print("3")
if true:
print("4")
if true:
print("5")
if true:
print("6")
if true:
print("7")
if true:
print("8")
if true:
print("9")
if true:
print("10")
if true:
print("11")
if true:
print("12")
if true:
print("13")
if true:
print("14")
if true:
print("15")
if true:
print("16")
if true:
print("17")
if true:
print("18")
if true:
print("19")
if true:
print("20")
if false:
print("End")
if true:
if true:
if true:
if true:
if true:
if true:
if true:
if true:
if true:
if true:
if true:
if true:
print("This won't be printed")