Hacker News new | ask | show | jobs
by devjam 901 days ago
Don't forget the companion isEven function:

    func isEven(n int64) bool {
        return !isOdd(n)
    }
1 comments

Wow you can call a function from a function ? It’ll revolutionize my productivity.