11 lines
69 B
Plaintext
Raw Normal View History

2024-07-16 18:22:28 +00:00
main() {
n := 10
loop {
if n == 0 {
return
}
n -= 1
}
}