mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
16 lines
263 B
V
16 lines
263 B
V
// normal comment
|
|
pub fn a1() {
|
|
println('hi')
|
|
}
|
|
|
|
// this should be merged
|
|
// into the same line
|
|
pub fn a2() {
|
|
println('hi')
|
|
}
|
|
|
|
// This should be its own parapgraph, because it ends with a dot.
|
|
// This should be another paragraph.
|
|
pub fn a3() {
|
|
println('hi')
|
|
}
|