v2 / vlib / v / slow_tests / valgrind / option_simple.v
6 lines · 5 sloc · 91 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1import os
2
3fn main() {
4 a := os.find_abs_path_of_executable('ls') or { '' }
5 eprintln(a)
6}
7