1 2 3 4 5 6 7 8 9 10 11
const x: i32 = 99; fn f() void { x = 1; } export fn entry() void { f(); } // error // // :3:5: error: cannot assign to constant