1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/fmt/tests/multiline_comment_keep.vv
2020-04-25 17:49:16 +02:00

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 !
*/
}
}