gambit-scheme

Scheme interpreter and compiler for fast dynamic language development.

brewmacoslinux
Try with needOr install directly
Source

About

Implementation of the Scheme Language

Commands

gscgsi

Examples

run scheme code interactively in the interpreter$ gsi
compile scheme file to executable program$ gsc -exe myprogram.scm
execute a scheme script from command line$ gsi -e '(+ 1 2)'
compile scheme code to C and then to machine code$ gsc myprogram.scm
load and run a scheme file in the interpreter$ gsi myprogram.scm