Top "Scheme" questions

Scheme is a functional programming language in the Lisp family, closely modeled on lambda calculus with eager (applicative order) evaluation.

Would Lisp be extremely difficult for a new(ish) programmer to learn?

I've got a little experience with Python (enough to where I can do if/else/elif and some random number …

scheme lisp common-lisp
Cartesian product in Scheme

I've been trying to do a function that returns the Cartesian Product of n sets,in Dr Scheme,the sets …

scheme racket cartesian-product
How to implement continuations?

I'm working on a Scheme interpreter written in C. Currently it uses the C runtime stack as its own stack, …

c lisp scheme continuations
Sublime Text 2 with MIT Scheme

Does anyone know how i could use sublime text 2 with scheme. I've heard ST2 and I want to try it …

scheme sublimetext2 sublimetext mit-scheme
small & readable scheme interpreter in C++?

Anyone know of a good / small scheme interpreter in C++? Perferably something < 2000 LOC, with a simple garbage collectro (either …

c++ scheme
Cons element to list vs cons list to element in Scheme

What's the difference between using cons to combine an element to a list and using cons to combine a list …

list lisp scheme cons
What happens in a Scheme 'cond' clause when the 'else' is omitted?

I'm in the process of learning Scheme. I recently spent (too much!) time trying to find a bug in a …

scheme racket
How to create a list of lists in scheme?

I may have missed this in the R5RS document but how do I create a list of lists in (…

scheme nested-lists chicken-scheme
Error with define in Racket

I just discovered Racket a few days ago, and I'm trying to get more comfortable with it by writing a …

functional-programming lisp scheme expression racket
Lisp as a Scripting Language in a C++ app

Hey, I've been looking at the possibility of adding a scripting language into my framework and I heard about Lisp …

c++ scripting lisp scheme common-lisp