Hacker News new | ask | show | jobs
by msoad 4839 days ago
CoffeeScript is not even close!

It can't even understand this code which is legit but horrible

    a = ()-> Math.random() * 1000 - 500
    b = ()-> Math.random() * 1000 - a()

    c = a == b ? a() < 0 ? a(b()) : b() : a(a())



http://coffeescript.org/#try:a%20%3D%20()-%3E%20Math.random(...