RosettaCodeData/Task/Loops-Do-while/Metafont/loops-do-while.metafont

4 lines
68 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
a := 0;
forever: show a; a := a + 1; exitif a mod 6 = 0; endfor
end