Dynamic languages - which one should I choose? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:32:58Z http://stackoverflow.com/feeds/question/1037135 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose 3 Dynamic languages - which one should I choose? Dipper 2009-06-24T08:41:38Z 2009-07-02T11:11:36Z <p>Dynamic languages are on the rise and there are plenty of them: e.g. Ruby, Groovy, Jython, Scala (not fully dynamic) etc etc. My background is in Java SE and EE programming and I want to extend my knowledge into one of these dynamic languages to be better prepared for the future.</p> <p>But which dynamic language should I focus on learning and why? Which of these will be the preferred language in the near future?</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037144#1037144 13 Answer by Jon Skeet for Dynamic languages - which one should I choose? Jon Skeet 2009-06-24T08:44:46Z 2009-06-24T08:44:46Z <p>Learning Ruby or Python (and Scala to a lesser extent) means you'll have very transferrable skills - you could use the Java version, the native version or the .NET version (IronRuby/IronPython). Groovy is nice but JVM-specific.</p> <p>Being "better prepared for the future" is tricky unless you envisage specific scenarios. What kind of thing do you want to work on? Do you have a project which you could usefully implement in a dynamic language? Is it small enough to try on a couple of them, to get a feeling of how they differ?</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037145#1037145 1 Answer by Arjan Einbu for Dynamic languages - which one should I choose? Arjan Einbu 2009-06-24T08:44:48Z 2009-06-24T08:44:48Z <p>JScript is quite usefull, and its certainly a dynamic language...</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037162#1037162 4 Answer by Robert Gould for Dynamic languages - which one should I choose? Robert Gould 2009-06-24T08:49:52Z 2009-06-24T08:49:52Z <p>In the game industry Lua, if you're an Adobe based designer Lua is also good, if you're an embedded programmer Lua is practically the only light-weight solution, but if you are looking into Web development and General tool scripting Python would be more practical</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037175#1037175 0 Answer by Alan Haggai Alavi for Dynamic languages - which one should I choose? Alan Haggai Alavi 2009-06-24T08:52:15Z 2009-06-24T08:52:15Z <p>If you want a language with a good number of modules (for almost anything!), go for <a href="http://perl.org/" rel="nofollow">Perl</a>. With its <a href="http://cpan.org/" rel="nofollow">CPAN</a>, you will always find what you want without reinventing the wheel.</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037186#1037186 5 Answer by Brian Agnew for Dynamic languages - which one should I choose? Brian Agnew 2009-06-24T08:54:03Z 2009-06-24T13:29:25Z <p>I would take a look at Scala. Why ?</p> <ol> <li>it's a JVM language, so you can leverage off your current Java skills</li> <li>it now has a lot of tooling/IDE support (e.g. Intellij will handle Scala projects)</li> <li>it has a <strong>functional</strong> aspect to it. Functional languages seem to be getting a lot of traction at the moment, and I think it's a paradigm worth learning for the future</li> </ol> <p>My (entirely subjective) view is that Scala seems to be getting a lot of the attention that Groovy got a year or two ago. I'm not trying to be contentious here, or suggest that makes it a better language, but it seems to be the new JVM language <em>de jour</em>.</p> <p>As an aside, a language that has <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/faq.aspx#IsItDynamic" rel="nofollow">some dynamic attributes</a> is Microsoft's <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/" rel="nofollow">F#</a>. I'm currently looking at this (and ignoring my own advice re. points 1 and 2 above!). It's a functional language with objects, built on .Net, and is picking up a lot of attention at the moment.</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037191#1037191 9 Answer by Hemant Kumar for Dynamic languages - which one should I choose? Hemant Kumar 2009-06-24T08:55:07Z 2009-06-24T08:55:07Z <p>Scala is not a dynamic language at all. Type inference doesn't mean that its untyped. However, Its a very nice language that has nice mixture of OOPs and functional programming. The only problem is some gotchas that you encounter along the way.</p> <p>Since you are already an experienced Java programmer, it will fit nicely into your skillset. Now, if you want to go all the way dynamic both Ruby or Python are awesome languages. There is demand for both the languages.</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037267#1037267 7 Answer by Rayne for Dynamic languages - which one should I choose? Rayne 2009-06-24T09:11:58Z 2009-06-24T09:11:58Z <p>I would personally recommend Clojure. Clojure is an awesome new language that is going in popularity faster than anything I've ever seen. Clojure is a powerful, simple, and fast Lisp implemented on the JVM. It has access to all Java libraries of course, just like Scala. It has a book written about it already, it's matured to version 1.0, and it has three IDE plugins in development, with all three very usable.</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1037270#1037270 3 Answer by JesperE for Dynamic languages - which one should I choose? JesperE 2009-06-24T09:13:01Z 2009-06-24T09:13:01Z <p>I'd recommend Python. It has a huge community and has a mature implementation (along with several promising not-so-mature-just-yet ones). Perl is as far as I've seen loosing a lot of traction compared to the newer languages, presumably due to its "non-intuitiveness" (no, don't get me started on that).</p> <p>When you've done a project or two in Python, go on to something else to get some broader perspective. If you've done a few non-trivial things in two different dynamic languages, you won't have any problems assimilating any other language. </p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1038721#1038721 4 Answer by John Flinchbaugh for Dynamic languages - which one should I choose? John Flinchbaugh 2009-06-24T14:27:54Z 2009-06-24T14:27:54Z <p>I found Groovy to be a relatively easy jump from an extensive Java background -- it's sort of a more convenient version of Java. It integrates really nicely with existing Java code as well, if you need to do that sort of thing.</p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1043824#1043824 0 Answer by nightingale2k1 for Dynamic languages - which one should I choose? nightingale2k1 2009-06-25T13:11:35Z 2009-06-25T13:11:35Z <p>i would vote +1 for Groovy (and Grails). You can type with Java style or Groovy still (you can also mix both and have no worry about that). Also you can use Java libs. </p> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1073771#1073771 0 Answer by unknown (google) for Dynamic languages - which one should I choose? unknown (google) 2009-07-02T11:11:36Z 2009-07-02T11:11:36Z <p>Well keeping in mind your background, i would recommend a language where the semantics are similar to what you are aware of. Hence a language like Scala, Fan, Groovy would be a good starting point.Once you get a hang of the basic semantics of using a functional language(as well as start loving it), you can move onto a language like Ruby. The turn around time for you in this way gets reduced as well as the fact that you can move towards being a polyglot programmer. </p>