vote up 7 vote down star
7

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?

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.

(and no, I'm not going to learn Intercal or Brainf*ck before you mention it)

flag
show 1 more comment

31 Answers

1 2 next
vote up 25 vote down

LOLCODE. How can you not love a language which has the following Hello World:

HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE

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.

There's even Lolcode.Net!

link|flag
1  
ROTLMAO! Wow ... – BobbyShaftoe Dec 6 '08 at 2:06
2  
I saw a proof of LOLCODE working as a BRAINFUCK interpreter, proving that it is a fully turing complete language, since it can parse and run programs written in another obscure complete language. – Karl Dec 11 '08 at 20:13
show 2 more comments
vote up 12 vote down

Common Lisp, because enlightenment is fun ;oP

link|flag
vote up 9 vote down

I always thought Prolog was fun. At least it's different.

link|flag
show 1 more comment
vote up 8 vote down

Redcode: A language for a game about programming. More info here.

link|flag
vote up 8 vote down

Javascript! The king of programming languages!

link|flag
2  
isn't that a scripting language? – Pim Jager Dec 6 '08 at 14:43
1  
oh no its not...javascript is a Programming Language – Andreas Grech Dec 11 '08 at 20:15
4  
Pim: scripting languages are a subset of programming languages – Jimmy Dec 11 '08 at 20:23
1  
JavaScript is a lot of things. It can be used to make fun programs. The language itself is not what I would call fun, though. Thats just my opinion. – TokenMacGuy Jul 23 at 22:56
1  
@TokenMacGuy, I'd say that browser implementations are not fun, especially the DOM API. Not the language itself. – Ionut G. Stan Jul 24 at 12:39
vote up 7 vote down

Lua 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.

Haskell 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.

You can get started in Lua just with what's on the web site and especially Roberto's book on Programming In Lua. Getting started in Haskell is harder but I recommend the web site, the #haskell IRC channel, and a paper by John Hughes called Why Functional Programming Matters.

link|flag
show 2 more comments
vote up 6 vote down

For maximum fun, pick something very different from what you know. For example, a functional language. I recommend Clojure.

link|flag
vote up 5 vote down

Logo!!, 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.
Currrently lots of implementation, ucblogo,aucblogo, elica just to name a few.

link|flag
vote up 4 vote down

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.

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.

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.

Verilog/VHDL for a taste of languages that model inherently parallel processes. See http://www.fpga4fun.com/ for some starting points. (The common use of such things is to create designs implemented in FPGAs or ASICs.)

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.)

link|flag
vote up 3 vote down

REBOL:

http://www.rebol.com

link|flag
1  
A totally extensible language. Nice, but a little weird in places. I thought it made making GUIs a breeze (though they do look even more alien than swing). Also, the number of constructs (if,case,any,&lots more) is really cool. – Ellery Newcomer Dec 12 '08 at 0:25
show 1 more comment
vote up 3 vote down

It's going to depend on what kind of work you do, but I think RobotBASIC is a fun language to learn. It's really more for simulations than for serious work.

If you want something that you can have fun with and you might do some work with I suggest you take a look at Processing.

link|flag
show 1 more comment
vote up 3 vote down

Perl 6

Many of the features of Perl, only better designed.

link|flag
show 2 more comments
vote up 2 vote down

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.

link|flag
vote up 2 vote down

D. (At least compared to java)

link|flag
vote up 2 vote down

How about a few Domain Specific Languages that, in fact, are powerful enough to be considered also General Purpouse Languages?

  • R, it seems a very beautiful object oriented language, with algebraic types (there are rings, fields, etc.).
  • Octave or Scilab, if you think everything is a matrix, then that's your language!
  • Maxima, a symbolic language implemented on top of Lisp.

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.

(If some purist argue that those are not strictly languages but software packages with a scripting language bundled, please forgive me).

link|flag
vote up 2 vote down

I'm having lots of fun with J, 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 Malbolge).

link|flag
show 1 more comment
vote up 2 vote down

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!

That and/or Common Lisp, I suppose. Compilers written as CL macros are pretty mindblowing.

link|flag
vote up 2 vote down

SmallBasic. Has a lot of features to make simple things fun! Has things like Flickr access, a LOGO turtle, and lots more!

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Whitespace, making the often ignored important (e.g. spaces, tabs and newlines)

link|flag
vote up 1 vote down

Played around with Rhino today. I am glad I spent the time.

link|flag
show 1 more comment
vote up 1 vote down

Don't forget Brainfuck!

link|flag
vote up 1 vote down

I'm sure a lot of people will disagree with me here, but I really like working with PHP.

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.

But I think the funnest language to spend time with is JavaScript as it's everywhere and is the default language for the web.

link|flag
vote up 1 vote down

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 MOO, so you can actually program and let people play a text-based virtual reality system

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
show 1 more comment
vote up 0 vote down

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.

http://www.haskell.org/

link|flag
vote up 0 vote down

I don't know what fun is supposed to mean, but haXe can be fun programming in. http://haxe.org

link|flag
vote up 0 vote down

My usual recommendation for this sort of query is Icon (or Unicon - this is a superset of the language that adds things like POSIX calls, ODBC and quite a few other things). The official Icon documentation has an excellent tutorial in it.

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!

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.