Hacker News new | ask | show | jobs
by CorvusCrypto 3512 days ago
good stuff. tbh though, only ~3x slowdown in scripting imo is pretty damn good 8)
2 comments

Isn't the "scripting" part just automatically compiling behind the scenes before running? It's not an interpreter or a VM. So the code runs just as fast as the compiled version, it's just that you pay a startup cost.
That's true between a debug build and just running it as a script I believe. But a release version will be optimized, I imagine if they compared a debug build to the scripted version they'd perform similarly.
Can confirm, Debug build runs in similar time to script.
Difference is that Release builds do whole-module optimization in Swift 3.

That allows for more aggressive code specialization and inlining and can remove more reference count updates (https://swift.org/blog/whole-module-optimizations/)

however for comparison, presented without comment: python version 0.708s
btw was this after compiled to pyc?
Not sure, I'm not seeing a .pyc file in the directory. Same every time I run it though.