vote up 5 vote down star
3

Hey everyone,

I've been making my way through The Little Schemer and was wondering what environment/ide/interpreter would be best to use in order to test any of the Scheme code I jot down for myself.

Thanks

flag

58% accept rate

10 Answers

vote up 10 vote down check

Dr Scheme has a nice editor, several different Scheme dialects, an attempt at visual debugging, lots of libraries, and can run on most platforms. It even has some modes specifically geared around learning the language.

link|flag
vote up 2 vote down

Just for the record I have to mention IronScheme.

IronScheme will aim to be a R6RS conforming Scheme implementation based on the Microsoft DLR.

Version 1.0 Beta 1 was just released. I think this should be good implementation for someone that is already using .NET framework.

link|flag
vote up 1 vote down

Just as a reminder: most Scheme implementations are NOT interpreters but compilers...

link|flag
vote up 0 vote down

It doesn't matter, as long as you subscribe to the mailing list(wiki/irc/online-community-site) for the associated community. It's probably worth taking a look at the list description and archives to be sure you are in the right one.

Most of these are friendly and welcoming to newcomers, so don't be afraid to ask.

It's also worth searching the archives of their mailing list(or FAQ or whatever they use) when you have a question - just in case it is a frequent question.

Good Luck!

link|flag
vote up 1 vote down

I would highly recommend both Chicken and Gauche for scheme.

link|flag
vote up 1 vote down

I've used PLT as mentioned in some of the other posts and it works quite nicely. One that I have read about but have not used is Allegro Common LISP Express. I read a stellar review about their database app called Allegro Cache and found that they are heavy into LISP. Like I said, I don't know if it's any good, but it might be worth a try.

link|flag
Common lisp and scheme are not the same thing. – Marcin Oct 24 '08 at 7:31
vote up 3 vote down

If you just want to test your scheme code, I would recommend PLT Scheme. It offers a very complete environment, with debugger, help, etc., and works on most platforms.

But if you also want to get an idea of how the interpreter behind the scenes works, and have Visual Studio, I would recommend Tachy. It is a very lightweight scheme interpreter written in c#. It allows you to debug just your scheme code, or also step through the c# interpreter behind the scenes to see what is going on.

link|flag
vote up 0 vote down

LispMe works on a Palm Pilot, take it anywhere, and scheme on the go. GREAT way to learn scheme.

link|flag
vote up 1 vote down

PLT Scheme (DrScheme) is one of the best IDEs out there, especially for Scheme. The package you get when downloading it contains all you need for developing Scheme code - libraries, documentation, examples, and so on. Highly recommended.

link|flag
vote up 1 vote down

I used MIT Scheme.

link|flag

Your Answer

Get an OpenID
or

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