v2 / vlib / v / tests / modules / submodules / test / test.v
10 lines · 8 sloc · 96 bytes · 42a65e100998b5acfa767380fea97ab489c21919
Raw
1module test
2
3pub struct Test {
4pub:
5 a string
6}
7
8fn init() {
9 println('init submodules.test')
10}
11