v2 / vlib / v / tests / interfaces / modules / module_a / module_a.v
5 lines · 4 sloc · 69 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1module module_a
2
3pub interface Writer {
4 write(name string) string
5}
6