v / cmd / tools / vdoc / testdata / readme_in_project_root / README.md
18 lines · 16 sloc · 174 bytes · 5a4dbf19d0c449696f579591b3ea6a3f0b1c06ae
Raw

hello from readme

Example:

fn is_odd(x int) bool {
    if x % 2 == 0 {
        return false
    }
    return true
}

Another example:

fn answer() string {
    return '42'
}