Files

11 lines
167 B
Rust
Raw Permalink Normal View History

2026-03-12 20:54:14 -04:00
fn main() {
let mut res = 42;
let option = Some(12);
// TODO: Fix the Clippy lint.
for x in option {
res += x;
}
println!("{res}");
}