Copy-paste fix pattern
fn main() {
var a = 1
var b = 2
save a + b
}
ClosedBit Docs
ClosedBit error docs
Line termination ambiguity. Semicolons are optional at normal line ends, but still required when more than one statement appears on one line or inside C-style for headers.
Semicolons are optional at normal line ends, but still required when more than one statement appears on one line or inside C-style for headers.
Put each statement on its own line, or add semicolons in compact one-line forms.
fn main() {
var a = 1
var b = 2
save a + b
}