// expect: 2 // expect: 5 fn main() { let a = 1; if true { a = 2; } if false { a = 3; } print(a); if false { a = 4; } else { a = 5; } print(a); }