v2 / vlib / v / fmt / tests / fn_with_end_comments_keep.vv
9 lines · 7 sloc · 149 bytes · 35f2a0fb6674c00c2a66fd6e7ae98b828497db30
Raw
1fn (c Color) is_blue() bool {
2 return c == .blue
3} // method of enum
4
5fn (c Color) show_int() int {
6 return int(c)
7} // method of enum
8
9fn main() {}
10