_offc_bisect_arith_local.nx source
↩ module page · 8 lines · 169 B
1// _offc_bisect_arith_local.nx -- Bar-3 feature bisect: let_arith
2
3func main() -> i64 {
4 let a: i64 = 7
5 let b: i64 = 6
6 let c: i64 = a * b
7 return c - 42
8}