Hacker News new | ask | show | jobs
by 6gvONxR4sf7o 1129 days ago
That’s a good point, but I think python will be much more feasible because of operator overloading:

(x+y)*z/3

vs

x.add(y).mul(z).div(3)

And that’s just a really simple example.

I’m also hopeful that pythons new variadic generic types make progress here in python.