RosettaCodeData/Task/Loops-For-with-a-specified-step/Vedit-macro-language/loops-for-with-a-specified-step.vedit
2023-07-01 13:44:08 -04:00

3 lines
52 B
Text

for (#1 = 1; #1 < 10; #1 += 2) {
Num_Type(#1)
}