Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
options
/
option_void_2_test.v
12
lines
·
11
sloc
·
122 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
fn
test_option_void() {
2
foo(22)?
3
assert
true
4
}
5
6
fn
foo(n int) ? {
7
if
n > 0 {
8
println(n)
9
}
else
{
10
return
none
11
}
12
}
13