Hacker News new | ask | show | jobs
by yencabulator 1515 days ago
> I'd like to see Go require return values be dealt with or explicitly ignored.

Ever use the return value from fmt.Println?

1 comments

Not usually, but the correct answer would be to either explicitly ignore the unused return values or use APIs that don't return values you don't care about.

    _ = fmt.Println("ok") // 1
    fmt.Println("ok")     // 2
1 is unambiguously worse than 2.