Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
interface_fields_with_pre_comments_keep.vv
14
lines
·
12
sloc
·
126 bytes
·
b25288338c6b96d18eb76cda54b3fd4815b88877
Raw
1
module main
2
3
fn main() {
4
}
5
6
pub interface IOperateInfo {
7
mut:
8
// title
9
title string
10
// msg
11
msg string
12
// id
13
id string
14
}
15