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

4 lines
68 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a := 0;
forever: show a; a := a + 1; exitif a mod 6 = 0; endfor
end