9 lines
72 B
Plaintext
9 lines
72 B
Plaintext
|
|
fn main() {
|
|
let i = 0;
|
|
while i < 10 {
|
|
i += 1;
|
|
}
|
|
}
|
|
|