Quazi Irfan
Quazi Irfan

Reputation: 2589

How to get started with Lisp

After reading a lot of interesting articles, I decided to try out Lisp. But, where can I download 'what' to get started with Lisp?

Lisp wiki page also doesn't have any official website.

What are the dedicated lisp resources?

Upvotes: 5

Views: 2396

Answers (4)

yan
yan

Reputation: 20982

Practical Common Lisp by Peter Seibel is an amazing way to start learning Common Lisp and what got me started writing useful code on day 1.

What dialects are you interested in? What are your goals?

Upvotes: 9

Vladimir Keleshev
Vladimir Keleshev

Reputation: 14245

The easiest IMHO is to start with Racket, very capable dialect of Lisp with nice IDE and a lot of documentation and learning materials for any level.

Racket was initially created as a tool for learning programming, but grew into full-feature language with IDE and exhaustive set of libraries for different tasks.

You can do web apps, as well as stand-alone GUI apps right out of the box.

Upvotes: 2

Heiko Rupp
Heiko Rupp

Reputation: 30934

The Land of Lisp is also a great resource as well as its companion web site lisperati

One of the interesting lisp dialects these days is Clojure - which runs on the JavaVM and can very well interface with existing Java code.

Upvotes: 6

Shaded
Shaded

Reputation: 17826

I would start with finding a good IDE. In my short time with LISP I used Lispworks.

Upvotes: 0

Related Questions