Variables
bug-missing-type

What's wrong?

var x = 5; x

Missing type annotation. Our language requires var x: i64 = 5;. The parser expects : after the variable name. Without it, the = 5 won't parse correctly. This is intentional -- every variable declaration says what it is, which matters when the compiler needs to know what WAT type to emit.