v2 / vlib / v / slow_tests / profile / profile_test_1.v
11 lines · 10 sloc · 130 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1import os
2import strconv
3
4fn main() {
5 if n := strconv.atoi(os.args[0]) {
6 println(n)
7 } else {
8 println(err)
9 }
10 assert true
11}
12