Julia

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Julia is a dynamic language in the tradition of Lisp, Perl, Python and Ruby. It aims to advance expressiveness and convenience for scientific and technical computing beyond that of environments like Matlab and NumPy, while simultaneously closing the performance gap with compiled languages like C, C++, Fortran and Java. Most high-performance dynamic language implementations have taken an existing interpreted language and worked to accelerate its execution. In creating Julia, we have reconsidered the basic language design, taking into account the capabilities of modern JIT compilers and the specific needs of technical computing. Our design includes: <ol>Multiple dispatch as the core language paradigm. Exposing a sophisticated type system including parametric dependent types. Dynamic type inference to generate fast code from programs with no declarations. Aggressive specialization of generated code for types encountered at run-time. </ol> Julia feels light and natural for data exploration and algorithm prototyping, but has performance that lets you deploy your prototypes. <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Feeds/RSS&WT.dl=0&WT.sessionid=Session:RSSView:c9380e638e2545d1b3d2a019016b8ea7

View the full article
 
Back
Top