RosettaCodeData/Task/Loops-Do-while/Metafont/loops-do-while.metafont
2023-07-01 13:44:08 -04:00

3 lines
68 B
Text

a := 0;
forever: show a; a := a + 1; exitif a mod 6 = 0; endfor
end