Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
fn_with_end_comments_keep.vv
9
lines
·
7
sloc
·
149 bytes
·
35f2a0fb6674c00c2a66fd6e7ae98b828497db30
Raw
1
fn (c Color) is_blue() bool {
2
return c == .blue
3
} // method of enum
4
5
fn (c Color) show_int() int {
6
return int(c)
7
} // method of enum
8
9
fn main() {}
10