RosettaCodeData/Task/Loops-While/Fantom/loops-while.fantom

13 lines
128 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class Main
{
public static Void main ()
{
Int i := 1024
while (i > 0)
{
echo (i)
i /= 2
}
}
}