scheme

MIT Scheme language interpreter and REPL (interactive shell). More information: <https://www.gnu.org/software/mit-scheme>.

Install

All systems
curl cmd.cat/scheme.sh
Debian Debian
apt-get install chezscheme
Ubuntu
apt-get install chezscheme
Arch Arch Linux
pacman -S chezscheme
image/svg+xml Kali Linux
apt-get install chezscheme
Windows (WSL2)
sudo apt-get update sudo apt-get install chezscheme
OS X
brew install chezscheme

MIT Scheme language interpreter and REPL (interactive shell). More information: <https://www.gnu.org/software/mit-scheme>.

  • Start a REPL (interactive shell):
    scheme
  • Run a scheme program (with no REPL output):
    scheme --quiet < script.scm
  • Load a scheme program into the REPL:
    scheme --load script.scm
  • Load scheme expressions into the REPL:
    scheme --eval "(define foo 'x)"
  • Open the REPL in quiet mode:
    scheme --quiet

© tl;dr; authors and contributors