Hacker News new | ask | show | jobs
by fragmede 79 days ago
I believe https://imgur.com/dN9Nz3h is the canonical example of why full Unicode support is maybe not desirable.
1 comments

because ths is so much better:

    class pppp {
        func ppp(_ c: Int, m: Int) -> Int {
            return c + m
        }
    }
    
    var b = 3
    var s = b + 2
    
    var p = pppp()
    print(p.ppp(b, m: s))