1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/for_in_option_test.v
2023-01-09 09:36:45 +03:00

9 lines
127 B
V

import os
fn test_for_in_option() {
for d in os.read_lines(@FILE) or { panic('not found') } {
println(d)
}
assert true
}