mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
18 lines
251 B
V
18 lines
251 B
V
module main
|
|
|
|
// Top level comment
|
|
enum EnumType {
|
|
// comment for the enum
|
|
abc
|
|
xyz // comment for the enum field
|
|
}
|
|
|
|
// Another top level comment
|
|
enum PacketType {
|
|
// Regular data packet
|
|
data // abc def
|
|
// xyz
|
|
// another comment
|
|
abcd // jklmn
|
|
}
|