System Grab Bag

View all TLDR pages from common (or from all pages)

scheme

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.