7 lines
112 B
Text
7 lines
112 B
Text
for(i = 1; i <= 10; i += 1)
|
|
{
|
|
show_message(string(i))
|
|
i += 1
|
|
if(i <= 10)
|
|
continue
|
|
}
|