Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
infix_compare_option_err.vv
8
lines
·
7
sloc
·
66 bytes
·
90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1
fn foo() ?int {
2
return 0
3
}
4
5
fn main() {
6
if foo() > foo() {
7
}
8
}
9