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

6 lines
55 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x = 0;
while(1,
print(x++);
if(x % 6 == 0, break)
)