0 branches
Tree Top files
Code
Clone with HTTPS:
56 years ago
..
main.comments.out all: src/ fixes last Apr 22 21 bytes
main.v all: src/ fixes last Apr 22 28 bytes

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'
}