Hacker News new | ask | show | jobs
by 2h 1084 days ago
because its ugly:

    package hello
    
    func good() (int, error) {
     return 0, nil
    }
    
    func bad() *struct {
     int
     error
    } {
     return nil
    }