Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
profile
/
profile_test_1.v
11
lines
·
10
sloc
·
130 bytes
·
6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1
import
os
2
import
strconv
3
4
fn
main() {
5
if
n := strconv.atoi(os.args[0]) {
6
println(n)
7
}
else
{
8
println(err)
9
}
10
assert
true
11
}
12