RosettaCodeData/Task/Loops-Continue/Vedit-macro-language/loops-continue.vedit

9 lines
146 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for (#1 = 1; #1 <= 10; #1++) {
Num_Type(#1, LEFT+NOCR)
if (#1 % 5 == 0) {
Type_Newline
Continue
}
Message(", ")
}