finally allow bare returns

This commit is contained in:
2026-06-07 13:10:36 +02:00
parent d4fe032a3a
commit 2864548daf
5 changed files with 43 additions and 34 deletions

View File

@@ -5,7 +5,7 @@ func run_test[x: str] : void
for i in 0..build_blacklist->size
if x->equal(build_blacklist->nth(i))
io.printf("Skipping %s...\n", x)
return 0
return
io.printf("Building %s...\n", x)
@@ -20,7 +20,7 @@ func run_test[x: str] : void
for i in 0..run_blacklist->size
if x->contains(run_blacklist->nth(i))
io.printf("Skipping %s...\n", x)
return 0
return
io.printf("Running %s...\n", x)