About 3,450,000 results
Open links in new tab
  1. There are several ways that you can leave Scheme: there are two Scheme procedures that you can call; there are several Edwin commands that you can execute; and there are graphical …

  2. Scheme is a statically scoped and properly tail-recursive dialect of the Lisp programming language invented by Guy Lewis Steele Jr. and Gerald Jay Sussman. It was designed to have …

  3. Similarly to Python, if we just type chezscheme, we get an interactive prompt. In Scheme parlance, this is called the read-eval-print-loop (REPL). To run a program without dropping into …

  4. Overview This book provides an introduction to Scheme for programmers--it is not for first-time programmers, but for people who already know how to program (at least a little) and are …

  5. Scheme is a statically scoped and properly tail-recursive dialect of the Lisp programming language invented by Guy Lewis Steele Jr. and Gerald Jay Sussman. It was designed to have …

  6. In Scheme, lists and S-expressions are basic. Arrays can be simulated using lists, but access to elements “deep” in the list can be slow (since a list is a linked structure).

  7. Like all programming languages, Scheme allows us to build our own procedures and add them to the set of existing ones. Very few implementations of Scheme even distinguish between the …