RosettaCodeData/Task/Integer-sequence/Fantom/integer-sequence.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

12 lines
119 B
Text

class Main
{
public static Void main()
{
i := 1
while (true)
{
echo (i)
i += 1
}
}
}