21 lines
234 B
Text
21 lines
234 B
Text
|
|
x=10
|
||
|
|
While x>0 {
|
||
|
|
Print x
|
||
|
|
x--
|
||
|
|
}
|
||
|
|
Do { ' se can use Repeat in place of Do
|
||
|
|
x++
|
||
|
|
Print x
|
||
|
|
} Until x=10
|
||
|
|
|
||
|
|
\\ without curly braces:
|
||
|
|
x=10
|
||
|
|
While x>0
|
||
|
|
Print x
|
||
|
|
x--
|
||
|
|
End While
|
||
|
|
Do
|
||
|
|
x++
|
||
|
|
Print x
|
||
|
|
Until x=10
|