mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
23 lines
310 B
V
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 !
|
|
*/
|
|
}
|
|
}
|