aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/cmd/tools/vdoc/tests/testdata/newlines/main.v
blob: 8d2bf901195503f79f34aaa5838661d57eb1e2f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// hello
//
// empty line
// newline using a full stop.
// ```v
// code
// ```
//
// test
// ====
// - foo
// - bar
// # test
// ########### deep test
// #a shouldnt have a newline
// test
//
// | foo bar   |  yes   |
// |-----------|--------|
// |  working  |  yup   |
pub fn funky() {
	println('hi')
}