Copy-paste fix pattern
fn main() {
u256 coins = 250
println("Coins: " + coins)
save coins
}
ClosedBit Docs
ClosedBit error docs
Unknown value or variable. A name was read before it was declared or before a function returned it.
A name was read before it was declared or before a function returned it.
Declare the value before using it, or correct the spelling of the existing variable.
fn main() {
u256 coins = 250
println("Coins: " + coins)
save coins
}