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

13 lines
119 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Main
{
public static Void main()
{
i := 1
while (true)
{
echo (i)
i += 1
}
}
}