vq / vlib / v / fmt / tests / consts_with_embedded_comments_input.vv
8 lines · 6 sloc · 108 bytes
Raw
1import gg
2
3const (
4 color = //gg.rgb(167,236,82)
5 gg.rgb(50, 90, 110)
6)
7
8fn main() {}
9