Are there people using the Scheme programming language out there?

NiklasMM picture NiklasMM · Nov 14, 2008 · Viewed 18.5k times · Source

I have just started to study computer sciences at my university where they teach us programming in Scheme.

Since I have learned C++ for the last 6 years, Scheme appears a little odd to me. My instructors tell me you can write any program you can write in C or Java with it.

Is anybody really using this language?

Answer

Jason Down picture Jason Down · Nov 14, 2008

Not a lot of people use it that I know, but it is definitely worth a peek (if even just to try programming in another paradigm, so that you learn to think differently). You're lucky to be able to take a class that uses Scheme, as most universities these days now teach Java. Here's a good link if you want to see some lectures from MIT or work on sample problems etc.

MIT Open Courseware - Structure and Interpretation Of Computer Programs

There's an accompanying book available on-line for free as well (Structure and Interpretation of Computer Programs).

UPDATE:

For those interested in a language that is similar to scheme that makes use of the JVM and can access Java libraries (since lots of universities use Java), check out Clojure. Maybe this will become the new language of choice for computer science introduction (we can all hope!).