I'm looking for a useful language that is turing complete. Being predominantly a C++ programmer, I'd like a language that forces me to learn from scratch to wrap my head around it. What I hope to get out of this are new ways of approaching a programming problem and thinking it through - ways that I would not have necessarily used if I was only using C++. Any suggestions?
|
5
|
|
|
|
|
|
I strongly recommend haskell. No side effects when calling functions, purely functional programming experience and a helpful community (irc channel |
||||
|
|
|
SMALLTALK? It is definitely a programing language much different from C++, from syntax to philosophy behind. Not to mention that in smalltalk you need to program Object Oriented, there is no escape. |
||
|
|
|
|
INTERCAL. The wise designers of this legendary language realised that GOTO was harmful, so they replaced it with COMEFROM. This introduced a minor difficulty in that it makes the program non-deterministic (when execution reaches a label, it has multiple COMEFROM statements it could jump to), but the solution turned out to be simple, elegant and powerful: just launch multiple threads and jump to all those locations at once. Edit: actually now I think about it, it isn't that different from C++. |
|||
|
|
|
|
Tcl/TkGo for TCL, it has a perpendicular way of doing things. with no assignment operator, this will definitely be a tangential headstart. |
||
|
|
|
|
I second Erlang. Listen to this interview with the creator of Erlang: http://www.se-radio.net/podcast/2008-03/episode-89-joe-armstrong-erlang This has many interesting implications for concurrent programming. Also, if you didn't know about se-radio, then now you do. :) |
||
|
|
|
|
Go Erlang. Once you get it you will find that it improves your c++ skills as well |
||
|
|
|
|
Just for fun, here's a SNOBOL example program:
|
||||
|
|
|
For practical programming, try LISP, Haskell, or Erlang. For something Completely Different, try SNOBOL. |
||
|
|
|
|
I second Lisp. A very nice primer for that is Practical Common Lisp. Be sure to look at On Lisp, Successful Lisp, and The Common Lisp Cookbook (all freely available), too. Bookmarks for CLiki and the Hyperspec are always helpful. |
||
|
|
|
|
Haskell: Good pure functional language. Lisp: http://xkcd.com/297/ Python: A scripting language, and a refreshing perspective Ruby: I can't stand this language's style, but it's definitely different ;) PHP: Super-easy to write code, just as easy to write crappy code. But, web programming can be educational, if you haven't done any. EDIT: Prolog is a great one to learn, too! Logic languages are a whole other paradigm. I remember building a mini adventure game in Prolog... so, anything's possible, right? |
||
|
|
If you're looking for something practical, you may want to go with a functional language (Scheme) or a more dynamic environment (Python.) On the other hand, if you're out for pure enrichment, http://en.wikipedia.org/wiki/Category:Esoteric_programming_languages has a great list of some mind-benders. Brain will make you long for the syntactic sugar of Assembly and Befunge is not only a unique language, it's a new paradigm. Unlambda is a good choice for SKI calculus, as are Iota and Jot, which only have two symbols a piece. If you allow for ambiguous encodings, Iota can even be written with only one symbol! In short, what to pick is determinate on whether you're more interested in stretching or in building practical skills. Either way, have fun. |
||
|
|
|
|
BrainFuck (yes, it's a real language), this is what the "Hello world" program looks like:
It's Turing complete, and as far away from anything else as possibly imaginable. |
||||||||||
|
|
|
I'll throw in Prolog. You'll twist your brain into knots trying to do procedural-style tasks. On the other hand, the things that Prolog are good at are very difficult to do in any procedural or OO language. I'm not sure, however, that learning Prolog will be very helpful to other languages. The concepts you'll pick up learning a functional language like ML, Scheme, or Haskell will be applicable just about anywhere else. |
||
|
|
|
|
The ones from university that I remember being the most different from anything I was used to were lisp and prolog. |
||
|
|
|
|
Well, there is Verilog. Nevertheless, I think you should learn LISP. Look up "Structure and Interpretation of Computer Programs" ... actually, watch these videos: http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/ By having a working knowledge of LISP and going through a classic such as SICP, you will be a better programmer for it. |
||
|
|
|
|
Not that different, but stack-oriented: Postscript! And you should have a Postscript engine (AKA printer) sitting somewhere near you. |
||
|
|
|
|
I'd suggest LISP, Haskell, APL or COBOL. |
||
|
|
|
|
i can't quantify which is 180 degrees different, but i'd suggest: functional paradigms: common lisp, scheme, haskell less-pure functional: ocaml, erlang, F#, scala, clojure stack-based: forth, factor i like this language taxonomy http://mvanier.livejournal.com/998.html and some really obscure ones: nemerle? http://ola-bini.blogspot.com/2008/01/language-explorations.html |
|||
|
|
