v2 / vlib / v / tests / project_with_modules_having_submodules / mod1 / m.v
5 lines · 4 sloc · 42 bytes · eed7c91e87468179b8c074fd68a56ace1f6093f6
Raw
1module mod1
2
3pub fn f() int {
4 return 1
5}
6