Hacker News new | ask | show | jobs
by qsort 1378 days ago
What's the difference when compared with other scripting languages? Is it just all-around faster or it's about some particular application?
1 comments

> What's the difference when compared with other scripting languages?

Compared to every other scripted languages I've tried, it's always faster - so much that it often rivals compiled code (even with extra optimizations as explained before)

> Is it just all-around faster

Yes - also faster to deploy, and harder to break in deployment due to dependencies rarely evolving. No need to pip install whatever.

Consequently, tracking modules' versions (say in python) and their break in compatibility is a thing of the past. Some may say it's because it's dead. I guess I'm a necrophiliac then, because it makes my life so much easier that I'm loving it :)