Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been fascinated towards LISP considering it's not so easy to read syntax and people's (read Paul Graham) claim of it being so awesomely awesome.

Out of curiosity, I tried to get my hands on it. However, after downloading LISP Studio, I haven't been able to get any further.

First, the IDE sucks...its no way near a professional environment to develop applications.

I tried to see if there are other environments available on windows but I haven't had much success.

I think this where the language lost it.

Could you suggest me something that would help me get into the fascinating mysterious world of LISP?

Thanks.

share|improve this question

closed as not constructive by Bill the Lizard Oct 8 '12 at 11:04

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

Start out with lisp in a box. Super easy to install on windows so you won't have to worry about getting things setup. Just pick up a copy of On Lisp and Practical Common Lisp, and have at it.

I recommend that because it is super easy. Personally I found Scheme to be nicer, but I don't know about windows versions of any Scheme distros. If you do go the Scheme route The Little Schemer and The SICP are invaluable.

Edit: One thing that came to mind that I've heard people really like as a Scheme IDE that is easy to use is Dr. Scheme

@jko: yeah I just realized that PLT had Dr. Scheme. I haven't used windows in a while so I haven't had to actually install PLT on windows. I'm sure it isn't too much of a hassle though.

share|improve this answer
@mk PLT Scheme has a good Windows Scheme distro. – jacobko Aug 22 '08 at 17:06
Dr Scheme is now Dr Racket. – kunj2aan Jun 14 '10 at 6:25

You can see DrScheme, it's often used for educational purposes but for me it looks good as an IDE and there are versions for Windows, Linux, Unix, Mac and Sparc Solaris. and it's free.

enter image description here

share|improve this answer
Yes. Dr. Scheme is the best starting place. – Pedro Morte Rolo Feb 2 '12 at 12:27
@PedroMorteRolo Wait Wait Wait, i'm confused, what is the relation of Lisp and Scheme? – jonathan Apr 4 '12 at 22:15

Emacs!

If you want to do LISP, Emacs is the traditional (best?) environment. Combine that with SLIME, and you've got everything you need. Setting up SLIME with Emacs is also quite easy.

share|improve this answer
1  
Its not as easy as you suggest... debugging any setup problems will require some basic knowledge of Lisp and lots of free time. And if the OS is Windows, one must use compatible software versions. Over time, moving to emacs and slime is desirable, but for a beginner, I think it would waste too much time. – Abhijeet Kashnia Feb 4 '12 at 19:47

I did the same thing recently, working on a cheap web app (flickr knockoff) in Lisp just to learn the language. I used SBCL on both linux (debian) and windows. And I used vim instead of emacs - the ability to connect right into lisp wasn't enough for me to switch editors, although I can see how if I used lisp more, it would probably be useful. The tutorial that I used to learn the language was Practical Common Lisp - I thought it was a pretty good teacher.

share|improve this answer

Take a look at Lispcabinet http://lispcabinet.sourceforge.net/ as Lisp in a box is not maintained now. This is a very neat package of many Lisps(SBCL, ClozureCL, Clojure) and Python etc.,

It makes the starting up, especially under windows a breeze.

share|improve this answer
This is a good option also I found this style guide very helpful labs.ariel-networks.com/cl-style-guide.html – mcheema Dec 30 '12 at 11:10

A decent lisp compiler is CLISP. It's available on Windows through Cygwin. Another alternative is the popular language Scheme, which is the lisp derivative language used by the popular book Structures and Interpretation of Computer Programs

share|improve this answer

I found Casting SPELs in LISP a very enjoyable experience.

share|improve this answer

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