mirror of
https://github.com/vlang/v.git
synced 2025-09-16 16:02:29 +03:00
23 lines
318 B
V
23 lines
318 B
V
// hello
|
|
//
|
|
// line after empty line,
|
|
// newline after comment line.
|
|
// ```v
|
|
// code
|
|
// ```
|
|
//
|
|
// test
|
|
// ====
|
|
// - foo
|
|
// - bar
|
|
// # test
|
|
// ########### deep test
|
|
// #a shouldn't have a newline
|
|
// test
|
|
//
|
|
// | foo bar | yes |
|
|
// |-----------|--------|
|
|
// | working | yup |
|
|
pub fn funky() {
|
|
println('hi')
|
|
}
|