Fun programming languages - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:15:05Zhttp://stackoverflow.com/feeds/question/345672http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/345672/fun-programming-languages8Fun programming languagesJason Baker2008-12-06T01:08:29Z2009-11-05T05:10:16Z
<p>What are some fun programming languages to learn and work with? I'm asking this for absolutely no practical purpose other than just to learn something new. So, what are some fun languages?</p>
<p>I already know Python and C# so those don't count (although Python would probably be the first language I'd recommend). I've spent some time with Ruby, but I don't really see anything that's a whole lot different from Python.</p>
<p>(and no, I'm not going to learn Intercal or Brainf*ck before you mention it)</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345675#3456753Answer by BobbyShaftoe for Fun programming languagesBobbyShaftoe2008-12-06T01:09:54Z2008-12-06T01:09:54Z<p>REBOL:</p>
<p><a href="http://www.rebol.com" rel="nofollow">http://www.rebol.com</a></p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345679#3456798Answer by Jim Nelson for Fun programming languagesJim Nelson2008-12-06T01:11:54Z2008-12-06T01:11:54Z<p><a href="http://en.wikipedia.org/wiki/Redcode" rel="nofollow">Redcode</a>: A language for a game about programming. More info <a href="http://vyznev.net/corewar/guide.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345684#3456842Answer by melaos for Fun programming languagesmelaos2008-12-06T01:18:26Z2008-12-06T01:18:26Z<p>how about ruby, it's fun and easy to learn.</p>
<p><a href="http://www.ruby-lang.org/en/" rel="nofollow">http://www.ruby-lang.org/en/</a>
<a href="http://jpz-log.info/archives/2007/10/11/ruby-fun-with-rinda/" rel="nofollow">http://jpz-log.info/archives/2007/10/11/ruby-fun-with-rinda/</a>
<a href="http://www.dr-chuck.com/csev-blog/000355.html" rel="nofollow">http://www.dr-chuck.com/csev-blog/000355.html</a>
<a href="http://en.wikipedia.org/wiki/Ruby_" rel="nofollow">http://en.wikipedia.org/wiki/Ruby_</a>(programming_language)</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345687#3456873Answer by Bill the Lizard for Fun programming languagesBill the Lizard2008-12-06T01:20:26Z2008-12-06T01:20:26Z<p>It's going to depend on what kind of work you do, but I think <a href="http://www.robotbasic.org/" rel="nofollow">RobotBASIC</a> is a fun language to learn. It's really more for simulations than for serious work.</p>
<p>If you want something that you can have fun with <em>and</em> you might do some work with I suggest you take a look at <a href="http://www.processing.org/" rel="nofollow">Processing</a>.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345690#3456909Answer by Guge for Fun programming languagesGuge2008-12-06T01:20:56Z2008-12-06T01:20:56Z<p>I always thought Prolog was fun. At least it's different.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345695#3456957Answer by Norman Ramsey for Fun programming languagesNorman Ramsey2008-12-06T01:26:08Z2008-12-06T01:26:08Z<p><a href="http://www.lua.org" rel="nofollow">Lua</a> because it is fun, simple, has great data structures, good string processing, and you can master the entire language and libraries. Nice interactive interpreter will have you started in minutes.</p>
<p><a href="http://www.haskell.org" rel="nofollow">Haskell</a> because it is chock-full of great language ideas that are so powerful and mind-stretching it will make your head explode. Also has interactive interpreter and great native-code compiler as well.</p>
<p>You can get started in Lua just with what's on the web site and especially <a href="http://www.lua.org/pil/" rel="nofollow">Roberto's book on Programming In Lua</a>. Getting started in Haskell is harder but I recommend the web site, the #haskell IRC channel, and a paper by John Hughes called <a href="http://www.md.chalmers.se/~rjmh/Papers/whyfp.html" rel="nofollow">Why Functional Programming Matters</a>.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345701#34570112Answer by Svante for Fun programming languagesSvante2008-12-06T01:30:04Z2008-12-06T01:30:04Z<p>Common Lisp, because enlightenment is fun ;oP</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345709#3457096Answer by Brian Carper for Fun programming languagesBrian Carper2008-12-06T01:33:43Z2008-12-06T01:33:43Z<p>For maximum fun, pick something very different from what you know. For example, a functional language. I recommend <a href="http://clojure.org/" rel="nofollow">Clojure</a>.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345710#3457107Answer by Pablo Marambio for Fun programming languagesPablo Marambio2008-12-06T01:33:45Z2008-12-06T01:33:45Z<p>Javascript! The king of programming languages!</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345723#34572326Answer by maayank for Fun programming languagesmaayank2008-12-06T01:45:32Z2008-12-06T01:45:32Z<p><a href="http://lolcode.com/home" rel="nofollow">LOLCODE</a>.
How can you not love a language which has the following Hello World:</p>
<pre><code>HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE
</code></pre>
<p>It's really hilarious. Technically it's just another procedural language (JAPL?), but I think any developer will laugh his hat (ahem :) ) off as he delves deeper into the language.</p>
<p>There's even <a href="http://code.google.com/p/lolcode-dot-net/" rel="nofollow">Lolcode.Net</a>!</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345724#3457242Answer by Rich for Fun programming languagesRich2008-12-06T01:46:15Z2008-12-06T01:46:15Z<p>I spent a little time over Thanksgiving re-familiarizing myself with Haskell, and it was surprisingly fun. Each little function is like a puzzle, and picking which functions to write is another layer of puzzle. Great stuff.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345738#3457381Answer by Jamal Hansen for Fun programming languagesJamal Hansen2008-12-06T01:52:04Z2008-12-06T01:52:04Z<p>I am in a similar situation as I use C# and Ruby most frequently. I've decided to learn a functional language in 2009 (as others have recommended). My flavor is Erlang.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345776#3457763Answer by Brad Gilbert for Fun programming languagesBrad Gilbert2008-12-06T02:20:59Z2008-12-06T02:20:59Z<h2><a href="http://rakudo.org" rel="nofollow"><code>Perl 6</code></a></h2>
<p>Many of the features of Perl, only better designed.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345859#3458594Answer by mmagin for Fun programming languagesmmagin2008-12-06T03:42:05Z2008-12-06T03:42:05Z<p>If you're looking to get out of your comfort zone, but want to learn something that has some practical value, consider learning Haskell, Forth, or a hardware description language such as Verilog or VHDL. </p>
<p>Haskell for a pure functional language with modern syntax. It eliminates the sometimes-annoying parentheses of LISP syntax, gives you a lot more modern functional programming language features, but it also allows no side effects -- thus enabling lazy evaluation.</p>
<p>Forth for one of the only really successful low-level/embedded-systems programming languages after C and assembly languages. Which can express very high level ideas concisely, but usually with arcane trickery.</p>
<p>Verilog/VHDL for a taste of languages that model inherently parallel processes. See <a href="http://www.fpga4fun.com/" rel="nofollow">http://www.fpga4fun.com/</a> for some starting points. (The common use of such things is to create designs implemented in FPGAs or ASICs.)</p>
<p>A little closer to your comfort zone: Have you spent much time with C or C++? (I'd recommend C++ and judicious use of the STL, even if you're not going for highly-OOP design, because it's nice to have some useful, well-tested container classes on hand.)</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345866#3458661Answer by Ken I. for Fun programming languagesKen I.2008-12-06T03:54:39Z2008-12-06T03:54:39Z<p><a href="http://compsoc.dur.ac.uk/whitespace/" rel="nofollow">Whitespace</a>, making the often ignored important (e.g. spaces, tabs and newlines)</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345888#3458881Answer by Nathan Powell for Fun programming languagesNathan Powell2008-12-06T04:10:25Z2008-12-06T04:10:25Z<p>Played around with Rhino today. I am glad I spent the time.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/345923#3459235Answer by mhd for Fun programming languagesmhd2008-12-06T04:39:31Z2008-12-06T04:39:31Z<p><a href="http://en.wikipedia.org/wiki/Logo_(programming_language" rel="nofollow">Logo</a>!!, I think this was my first programming language. I sucked at it, lol.Gee, it was about 15 year ago.
Want to try it again sometimes,though.
<br>
Currrently lots of implementation, <i>ucblogo,aucblogo, elica</i> just to name a few.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/360711#3607111Answer by sli for Fun programming languagessli2008-12-11T20:06:57Z2008-12-11T20:06:57Z<p>Don't forget <a href="http://www.muppetlabs.com/~breadbox/bf/" rel="nofollow">Brainfuck</a>!</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/360734#3607342Answer by Ellery Newcomer for Fun programming languagesEllery Newcomer2008-12-11T20:14:19Z2008-12-11T20:14:19Z<p>D. (At least compared to java)</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/360741#3607411Answer by Ryan Smith for Fun programming languagesRyan Smith2008-12-11T20:17:59Z2008-12-11T20:17:59Z<p>I'm sure a lot of people will disagree with me here, but I really like working with PHP.</p>
<p>One of the reasons I find PHP so enjoyable is not only is it free and connects very easily with MySQL, there are a ton of different projects (PHPBB, MediaWiki, SugarCRM) and code samples out there that people have created.</p>
<p>But I think the funnest language to spend time with is JavaScript as it's everywhere and is the default language for the web.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1174948#11749482Answer by fortran for Fun programming languagesfortran2009-07-23T22:54:07Z2009-07-24T12:20:07Z<p>How about a few Domain Specific Languages that, in fact, are powerful enough to be considered also General Purpouse Languages?</p>
<ul>
<li>R, it seems a very beautiful object oriented language, with algebraic types (there are rings, fields, etc.).</li>
<li>Octave or Scilab, if you think everything is a matrix, then that's your language!</li>
<li>Maxima, a symbolic language implemented on top of Lisp.</li>
</ul>
<p>Each one of those is focused in a specefic field of mathematics (statistics, numerical analisis and symbolical algebra respectively), so are very useful in many real situations.</p>
<p>(If some purist argue that those are not strictly languages but software packages with a scripting language bundled, please forgive me).</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1177375#11773751Answer by Stefano Borini for Fun programming languagesStefano Borini2009-07-24T12:34:40Z2009-07-24T12:34:40Z<p>I suggest you LambdaMOO. It's an object oriented language built on top of a object oriented database. The fun comes by the fact that LambdaMOO is a <a href="http://en.wikipedia.org/wiki/MOO" rel="nofollow">MOO</a>, so you can actually program and let people play a text-based virtual reality system</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678360#16783600Answer by Jason Baker for Fun programming languagesJason Baker2009-11-05T04:31:01Z2009-11-05T04:31:01Z<p>I've recently been having a decent amount of fun with OCaml. Sure it has its warts, but it's actually a pretty good language overall.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678379#16783792Answer by ephemient for Fun programming languagesephemient2009-11-05T04:35:28Z2009-11-05T04:35:28Z<p>I'm having lots of fun with <a href="http://www.jsoftware.com/" rel="nofollow"><strong>J</strong></a>, an APL-inspired language. It's one of the most foreign-looking languages you'll ever see (disregarding languages which aren't meant for real use like <a href="http://www.lscheffer.com/malbolge.shtml" rel="nofollow">Malbolge</a>).</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678387#16783870Answer by Phong for Fun programming languagesPhong2009-11-05T04:38:13Z2009-11-05T04:43:57Z<p>If you want something new, which is completely different than python, C/C++, Java, etc... I recommend you Haskel which is a functional programming language.</p>
<p><a href="http://www.haskell.org/" rel="nofollow">http://www.haskell.org/</a></p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678410#16784102Answer by Kaleb Brasee for Fun programming languagesKaleb Brasee2009-11-05T04:47:59Z2009-11-05T04:47:59Z<p>Scala is fun. It has enough functional constructs to guide you into programming functionally, but also provides a great OO background as well. It's actually more OO than Java, since it uses no primitives.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678411#1678411-1Answer by Nathan Feger for Fun programming languagesNathan Feger2009-11-05T04:48:05Z2009-11-05T04:48:05Z<p>You might look at this a different way as well. Perhaps you might simply want to try some new programming challenges like <a href="http://projecteuler.net" rel="nofollow">http://projecteuler.net</a> or <a href="http://topcoder.com" rel="nofollow">http://topcoder.com</a>. Do a couple in your language of comfort then, try hitting it with a functional one. </p>
<p>project euler especially will teach you how much less memory primitives types take than auto boxed ones. I found this out trying to do some groovy work, which was treating some of my variables as bigdecimals (my fault)</p>
<p>To directly answer the question</p>
<p>groovy: <a href="http://groovy.codehaus.org/" rel="nofollow">http://groovy.codehaus.org/</a></p>
<p>scala: <a href="http://www.scala-lang.org" rel="nofollow">http://www.scala-lang.org</a></p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678419#16784192Answer by Michael Kohout for Fun programming languagesMichael Kohout2009-11-05T04:52:00Z2009-11-05T04:52:00Z<p>Err....I really like F#. It's like OCaml with nice editor support(VisualStudio)....plus, you may end up actually end up using it for work!</p>
<p>That and/or Common Lisp, I suppose. Compilers written as CL macros are pretty mindblowing.</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678426#16784262Answer by RCIX for Fun programming languagesRCIX2009-11-05T04:54:58Z2009-11-05T04:54:58Z<p><a href="http://msdn.microsoft.com/en-us/devlabs/cc950524.aspx" rel="nofollow">SmallBasic</a>. Has a lot of features to make simple things fun! Has things like Flickr access, a LOGO turtle, and lots more!</p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678459#16784590Answer by Cristi Băluță for Fun programming languagesCristi Băluță2009-11-05T05:08:31Z2009-11-05T05:08:31Z<p>I don't know what fun is supposed to mean, but haXe can be fun programming in.
<a href="http://haxe.org" rel="nofollow">http://haxe.org</a></p>
http://stackoverflow.com/questions/345672/fun-programming-languages/1678468#16784680Answer by staticsan for Fun programming languagesstaticsan2009-11-05T05:10:16Z2009-11-05T05:10:16Z<p>My usual recommendation for this sort of query is <a href="http://www.cs.arizona.edu/icon/" rel="nofollow">Icon</a> (or <a href="http://unicon.sourceforge.net/" rel="nofollow">Unicon</a> - this is a superset of the language that adds things like POSIX calls, ODBC and quite a few other things). The <a href="http://www.cs.arizona.edu/icon/lb3.htm" rel="nofollow">official Icon documentation</a> has an excellent tutorial in it.</p>
<p>Some of the beauty of Icon/Unicon is the goal-directed evaluation, the success-failure model and the pervasive generators. If you are familiar with them in Python, you can get to see the language that inspired them!</p>