Which Lisp?

Discussion of other Lisp dialects (Arc, Clojure, AutoLisp, XLISP, etc.)
Post Reply
giga-bite
Posts: 5
Joined: Thu Mar 31, 2011 10:06 pm

Which Lisp?

Post by giga-bite » Mon Apr 11, 2011 11:59 am

Hello, all you Lispers out there. At only age 13, I am a very young Lisper. You all probably have more experience. Here is my story.

I started with JavaScript. The first time I tried something, however, I had so much trouble figuring out which function to use, where to put it, etc. I turned to the world of Lisp, with the promise of more time learning it, but also the promise of never forgetting a function, because I got to define them. My current problem is to figure out which dialect to use. I don't prefer the setup of emacs, though. If you prefer emacs, you may as well stop reading and go to another topic. On a lighter note, I am starting to figure out how the forum works.

-C_S

jstoddard
Posts: 20
Joined: Fri Jan 28, 2011 6:13 pm

Re: Which Lisp?

Post by jstoddard » Mon Apr 11, 2011 4:21 pm

Pick one and run with it; if you don't like it you can always switch later, and a lot of what you learned will still apply.

I've been focusing my learning efforts on Common Lisp because it's big and flexible. It lets me program how I like. I do like recursion and elegant code, but I don't worship them. I've marvelled at functional programming, but I don't always want to do it. However, I'll probably make the effort to pick up Scheme and Haskell (admittedly a non-lisp) at some point. I guess I won't even bother mentioning Emacs Lisp... ;-)

saulgoode
Posts: 45
Joined: Tue Dec 14, 2010 1:39 am

Re: Which Lisp?

Post by saulgoode » Tue Apr 12, 2011 11:56 am

I would recommend spending a little time with How To Design Programs which is based on the Scheme dialect ("DrScheme" to be precise). It will probably start out a little too simplistic given your experience level, but it is quick way to get started without have to learn a lot of different library functions and looping constructs.

larryfeltonj
Posts: 1
Joined: Mon Oct 31, 2011 1:26 pm

Re: Which Lisp?

Post by larryfeltonj » Mon Oct 31, 2011 1:59 pm

I'm aware I'm answering a very old (and not very active) thread, but I've recently gone through much the same question myself. I was exposed to scheme a few decades back in my schooling, have been fond of lisp since then, and a few months ago I decided I'd get proficient enough with some variant of lisp to pick up a few contract jobs as I encounter them.

Here's what I came up with:

If you're interested in a modern, cutting edge lisp, with a fanatically active developer community, I'd go with Clojure. If you're interested in solid workhorse lisp, with built-in functions to do virtually anything, I'd go with Common Lisp. If you're just interested in learning the lisp approach to programming, I'd go with Common Lisp, Scheme, or Clojure (play with them all, and take your pick).

Post Reply