11 lines
No EOL
69 B
Text
11 lines
No EOL
69 B
Text
main() {
|
|
n := 10
|
|
|
|
loop {
|
|
if n == 0 {
|
|
return
|
|
}
|
|
|
|
n -= 1
|
|
}
|
|
} |