I wanted to take Julia for a spin and see how implementing some simple numerical computation would go.
This script does not really use the most distinguishing features of Julia 1.0, the same logic could be implemented in Python for instance. But those are the first steps, later I will try to implement something more sophisticated.
As to my findings about Julia itself:<p>- a syntacticly pleasant language! I like the multi-line expression with begin -> end (you can see a few examples in the code)<p>- packaging is in a bit of a flux still, but it is expected<p>- documentation is pretty good<p>- linear-algebra operations as a first class citizen, random number generation as well. Plenty of other features like that that make numerical code in Julia somewhat more compact and idiomatic