Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Isn't Julia a dynamically typed language?


Yes, but it's strongly typed, which is more important.


Yes but C++ is strongly and statically typed. Julia is not even running in the same race as C++.


Yes. So what?


Then it is not a replacement for C++. It's going to be slow.


Static types are not required for things like type inference and optimizing compilers. It's just that many dynamic languages are not written with performance in mind, and have semantics that make optimization impossible.

Julia was designed from the ground up to have C level performance, and well written Julia code does that easily in throughput focused scenarios.

Julia's intermediate representation which it compiles dynamic code down to is statically typed, and any dynamism just manifests itself as the compiler waiting until the types are resolved at runtime before running again and generating new specialized code.

If your code is written so that the types are all inferrable, there's no pauses.


it's not. it uses type inference to infer types and llvm to compile down to native code. differentialequations.jl is often faster than the fastest C and Fortran solvers, and Octavian.jl often beats MKL at matrix multiplication.


Type inference changes things. It's awesome that it can beat handwritten C and Fortran code.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: