RosettaCodeData/Task/Loops-For-with-a-specified-step/GML/loops-for-with-a-specified-step.gml
2023-07-01 13:44:08 -04:00

2 lines
55 B
Text

for(i = 0; i < 10; i += 2)
show_message(string(i))