ps6: init

This commit is contained in:
2026-04-28 15:18:50 +02:00
parent 52aa6d7431
commit 66dd17c9cd
81 changed files with 4806 additions and 0 deletions
@@ -0,0 +1,16 @@
func main(count)
{
while (count > 0)
{
println("count is now ", count)
count = count - 1
}
}
//TESTCASE: 6
//count is now 6
//count is now 5
//count is now 4
//count is now 3
//count is now 2
//count is now 1