This commit is contained in:
NoryiE
2025-02-16 14:12:49 +00:00
parent c6a89e5b35
commit e0aeb9b06e
2737 changed files with 5220 additions and 1039045 deletions

View File

@@ -1,24 +0,0 @@
/mob/Login()
var/count = 0
world << "Let's count until infinity!"
// Infinite loop
while (TRUE)
count += 1
if (count == 3)
world << "three"
// Skip the rest of this iteration
continue
world << "#[count]"
if (count == 5)
world << "OK, that's enough"
// Exit this loop
break
// From https://spacestation13.github.io/DMByExample/flow/loops.html