Copy-paste fix pattern
fn main() {
u256 a = 10
u256 b = 20
save a + b
}
ClosedBit Docs
ClosedBit error docs
Line termination ambiguity. Semicolons are optional at normal line ends, but compact one-line code can still need a separator.
Semicolons are optional at normal line ends, but compact one-line code can still need a separator.
Put each statement on its own line, or add semicolons when multiple statements share one line.
fn main() {
u256 a = 10
u256 b = 20
save a + b
}