Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
interface_method_with_pre_comments_keep.vv
16
lines
·
14
sloc
·
231 bytes
·
112a1278bb2295bd5862882d4360c6f06fa06aa8
Raw
1
module main
2
3
fn main() {
4
}
5
6
pub interface IOperateResult {
7
mut:
8
// is_success
9
is_success bool
10
// is_show_msg
11
is_show_msg bool
12
// msg
13
msg string
14
// comment before method def
15
set_msg(msg string) // comment after method def
16
}
17