RosettaCodeData/Task/Loops-N-plus-one-half/Fantom/loops-n-plus-one-half.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

13 lines
222 B
Text

class Main
{
public static Void main ()
{
for (Int i := 1; i <= 10; i++)
{
Env.cur.out.writeObj (i)
if (i == 10) break
Env.cur.out.writeChars (", ")
}
Env.cur.out.printLine ("")
}
}