pub fn main() {
let x = Some(1);
if let Some(x) = x {
println!("{}", x);
}
}
$ rune run test.rn
error: Missing variable `3`
┌─ test3.rn:4:22
│
4 │ if let Some(x) = x {
│ ^ Missing variable `3`
Error: Failed to build rune sources (see diagnostics for details)