mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
10 lines
116 B
Text
10 lines
116 B
Text
fn foo() ?bool {
|
|
return true
|
|
}
|
|
|
|
fn main() {
|
|
foo()? // only works in main()
|
|
println('done')
|
|
}
|
|
===output===
|
|
done
|