blob: 840ca437212c5be56196e101dc8ad40abce2f4a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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')
}
|