RosettaCodeData/Task/Loops-Continue/Suneido/loops-continue-1.suneido
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
170 B
Text

ob = Object()
for (i = 1; i <= 10; ++i)
{
ob.Add(i)
if i is 5
{
Print(ob.Join(','))
ob = Object()
}
}
Print(ob.Join(','))