Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v4
/
vlib
/
v
/
checker
/
tests
/
if_expr_option_err.vv
9
lines
·
8
sloc
·
103 bytes
·
90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1
fn get_bool() ?bool {
2
return true
3
}
4
5
fn main() {
6
if get_bool() {
7
println('Using plain lists')
8
}
9
}
10