v/vlib/v/tests/multiple_paths_in_vmodules/main.vv

10 lines
133 B
V

import yyy
import xxx
import zzz
fn main() {
all := [xxx.f(), yyy.f(), zzz.f()]
println(all)
assert all == ['x','y','z']
}