6 lines
102 B
Rust
6 lines
102 B
Rust
fn main() {
|
|
for _ in [1, 2] {}
|
|
let x = [1, 2];
|
|
for _ in x {}
|
|
for _ in [1.0, 2.0] {}
|
|
}
|