RosettaCodeData/Task/Loops-Do-while/PARI-GP/loops-do-while-1.pari

6 lines
55 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
x = 0;
while(1,
print(x++);
2015-02-20 00:35:01 -05:00
if(x % 6 == 0, break)
2013-04-10 22:43:41 -07:00
)