Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
1–8 of 8 posts
Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#2Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#3Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#4http://news.mit.edu/2018/mit-developed-julia-programming-lan...
main quotes:
>Julia is the only high-level dynamic programming language in the "petaflop club"
>“The release of Julia 1.0 signals that Julia is now ready to change the technical world by combining the high-level productivity and ease of use of Python and R with the lightning-fast speed of C++,” Edelman says.
Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#5The use case for Julia (scripting language for number crunchers) is a tiny fraction of what PLs are used for. MIT must have lost one eye and have a cataract on the remaining one if they see Julia as “the next big“ PL.
Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#6Anyone actually switched from R to Julia? As in a deep R user that’s done it for a while. Really want to hear your thoughts if you did.
Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#7The use case for Julia (scripting language for number crunchers) is a tiny fraction of what PLs are used for. MIT must have lost one eye and have a cataract on the remaining one if they see Julia as “the next big“ PL.
It turns out that making a language that did this satisfactorily requires that you build a language that supports amazing flexibility and expressiveness everywhere in the language which ended up making it a fantastic general purpose programming language.
The beauty is that Julia's AST is a language object that you can manipulate at runtime or compile time and make whatever modifications you like. This makes Julia code itself a wonderful intermediate representation for whatever domain specific language you'd care to build and the domain of that language need not be numeric.
Re: Is Julia the next big programming language? MIT thinks so, as version 1.0 lands
#8The use case for Julia (scripting language for number crunchers) is a tiny fraction of what PLs are used for. MIT must have lost one eye and have a cataract on the remaining one if they see Julia as “the next big“ PL.
Julia is a pretty awesome general purpose PL; it's motivating use may have been for number crunchers, but the result is strength in a number of areas of much broader application.