v / cmd / tools / vdoc / testdata / newlines / main.v
23 lines · 23 sloc · 318 bytes · 8eaaba6094456bb21833fddf20d22514e7dadcb2
Raw
1// hello
2//
3// line after empty line,
4// newline after comment line.
5// ```v
6// code
7// ```
8//
9// test
10// ====
11// - foo
12// - bar
13// # test
14// ########### deep test
15// #a shouldn't have a newline
16// test
17//
18// | foo bar | yes |
19// |-----------|--------|
20// | working | yup |
21pub fn funky() {
22 println('hi')
23}
24