v/vlib/v/fmt/tests/multiline_comment_keep.vv

23 lines
310 B
V

/*
this is a very long comment
that is on multiple lines
and has some formatting in it
that should be
preserved.
*/
fn main() {
println('hello')
/*
this comment also
has mutliple lines
but it's difference
is that it is indented !
*/
if true {
/*
this one is even more
indented !
*/
}
}