v2 / vlib / v / tests / interfaces / modules / module_b / module_b.v
5 lines · 4 sloc · 68 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1module module_b
2
3pub interface Reader {
4 read(name string) string
5}
6