Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
debug
/
tests
/
smartcast.vv
9
lines
·
8
sloc
·
81 bytes
·
9f6448e30e3af6fddc4998652d27ad4e060fe2f3
Raw
1
fn smartcast(a ?int) {
2
if a != none {
3
$dbg;
4
}
5
}
6
7
fn main() {
8
smartcast(1)
9
}
10