|
|
|
|
|
by oxinabox
1922 days ago
|
|
Scientific and technical computing. --- Not saying you can't do this stuff in rust.
I mean its turing complete. But contrast the description of Rust:
A language empowering everyone to build reliable and efficient software. vs Julia
Julia is a high-level, high-performance dynamic language for technical computing. Julia is for doing "technical computing".
Things like simulations, problems where you need to apply a bunch of math.
Its easy to write math in julia. The syntax is designed for it (like look at code for manipulating matrixes). The semantics are designed for it (multiple dispatch is the thing you need for efficient linear algebra for example. Specializing on each combination of matrixes) |
|