vote up 11 vote down star
5

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?

flag

19 Answers

vote up 37 vote down check

I strongly recommend haskell. No side effects when calling functions, purely functional programming experience and a helpful community (irc channel #haskell on irc.freenode.org). You will need to rethink a lot of things you learned in C++.

link|flag
And start right now! haskell.org/ghc/download.html learnyouahaskell.com/starting-out – Earwicker Dec 1 '08 at 9:10
Thank you :) I have and am enjoying it. – carleeto Dec 1 '08 at 19:33
vote up 2 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

Tcl/Tk

Go for TCL, it has a perpendicular way of doing things. with no assignment operator, this will definitely be a tangential headstart.

link|flag
vote up 1 vote down

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

link|flag
vote up 6 vote down

Go Erlang.

Once you get it you will find that it improves your c++ skills as well

link|flag
vote up 1 vote down

Just for fun, here's a SNOBOL example program:

*   WORDSIZE.SNO
*
*   Program to read a file and display the number of words of
*   various word lengths.  To make the program more interesting,
*   we shall only consider word lengths between 3 and 9.  This allows
*   us to demonstrate the use of an array with subscripts offset from
*   1, as well as array failure.
*
*   The file being scanned is read from standard input.  For example,
*   to scan the file TEXT.IN, type:
*
*   	SNOBOL4 WORDSIZE <TEXT.IN
*
*   Trim trailing blanks from input
*
    &TRIM	=	1

*   Define pattern for words.  A word consists of upper- and lower-case
*   letters, apostrosphe and hyphen.
*
    WORDPAT	=	BREAK(&LCASE &UCASE) SPAN(&LCASE &UCASE "'-") . WORD

*   Define the array to hold the word counts.  Valid subscripts must be
*   in the range 3 through 9; all others will cause the array reference
*   to fail.  Array elements are initialized to zero instead of the normal
*   default, which is the null string.  This causes a zero to be produced
*   in the printed output if a particular array entry is never incremented.
*
    COUNT	=	ARRAY('3:9',0)

*   Read a line from the input file.  Fail if end-of-file.
*
READ    LINE	=	INPUT				:F(DONE)

*   Find the next word in LINE, and remove it to WORD.  Fail when
*   no more words remain in the line.
*
NEXTW   LINE WORDPAT =					:F(READ)

*   Increment the appropriate array element for words of this
*   size.  The statement quietly fails if the size is outside
*   the range 3 through 9.
*
    COUNT<SIZE(WORD)> = COUNT<SIZE(WORD)>+ 1	:(NEXTW)

*   Upon end of file, print the values in the array.  Print heading first.
*
DONE    OUTPUT	=	"WORD LENGTH     NUMBER OF OCCURRENCES"
    I	=	2

*   Index through array starting at element 3.  When we reach element
*   10, the array reference fails, and we fall through to END.
*
PRINT   I	=	I + 1
    OUTPUT	=	LPAD(I,5) LPAD(COUNT<I>,20)	:S(PRINT)

END
link|flag
wth is this language – Perpetualcoder Jan 12 at 23:02
SNOBOL. Great fun. (PS. Google is your friend.) – Charlie Martin Jan 14 at 17:08
vote up 2 vote down

For practical programming, try LISP, Haskell, or Erlang.

For something Completely Different, try SNOBOL.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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?

link|flag
Python is much more than just a scripting langauge :o – Deinumite Dec 1 '08 at 1:35
I figured, if he's looking for a non-C++ mindset, it made sense to sell the least object-oriented side of Python. That said, I totally agree. – ojrac Dec 1 '08 at 18:58
vote up 2 vote down

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.

link|flag
vote up 6 vote down

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.

link|flag
Brainfuck is not all that different from a very limited assembly language. Malbolge, on the other hand... – ShreevatsaR Dec 1 '08 at 3:07
This definitely gets an up vote! – BobbyShaftoe Dec 1 '08 at 6:00
This was my first thought as well. – Dave Sherohman Dec 1 '08 at 6:57
lol...definitely a creative name. Will check it out. Thanks. – carleeto Dec 1 '08 at 19:35
incredible name...wonder how censor boards never got to it – Perpetualcoder Jan 12 at 23:01
vote up 10 vote down

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.

link|flag
vote up 3 vote down

The ones from university that I remember being the most different from anything I was used to were lisp and prolog.

link|flag
vote up 2 vote down

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.

link|flag
vote up 4 vote down

Not that different, but stack-oriented: Postscript!

And you should have a Postscript engine (AKA printer) sitting somewhere near you.

link|flag
vote up 3 vote down

I'd suggest LISP, Haskell, APL or COBOL.

link|flag
vote up 15 vote down

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

link|flag
vote up 9 vote down

Anything functional like ML or Haskell.

link|flag

Your Answer

Get an OpenID
or

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