Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
option_mut_non_mut_err.vv
7
lines
·
7
sloc
·
115 bytes
·
11bcd40b4a53650d947d5987cc2574b4354be031
Raw
1
fn main() {
2
option_1 := ?int(10)
3
if mut option_1 != none {
4
option_1 = 11
5
}
6
println('Options: ${option_1}')
7
}
8