v2 / cmd / tools / vdoc / testdata / readme_in_project_root / main.readme.comments.out
16 lines · 14 sloc · 194 bytes · b474aa0faf8d055aaced80ed0687ac354d0864a0
Raw
1hello from readme
2Example:
3fn is_odd(x int) bool {
4 if x % 2 == 0 {
5 return false
6 }
7 return true
8}
9
10Another example:
11fn answer() string {
12 return '42'
13}
14module foo
15
16fn bar()
17