RosettaCodeData/Task/Integer-sequence/Fantom/integer-sequence.fantom

13 lines
119 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class Main
{
public static Void main()
{
i := 1
while (true)
{
echo (i)
i += 1
}
}
}