guile

Guile Scheme interpreter. More information: <https://www.gnu.org/software/guile>.

Install

All systems
curl cmd.cat/guile.sh
Debian Debian
apt-get install guile-2.0-libs
Ubuntu
apt-get install guile-2.0-libs
Alpine
apk add guile
Arch Arch Linux
pacman -S guile
image/svg+xml Kali Linux
apt-get install guile-2.0-libs
CentOS
yum install guile-2.0-libs
Fedora
dnf install guile-2.0-libs
Windows (WSL2)
sudo apt-get update sudo apt-get install guile-2.0-libs
OS X
brew install guile
Raspbian
apt-get install guile-2.0-libs
Docker
docker run cmd.cat/guile guile powered by Commando

Guile Scheme interpreter. More information: <https://www.gnu.org/software/guile>.

  • Start a REPL (interactive shell):
    guile
  • Execute the script in a given Scheme file:
    guile script.scm
  • Execute a Scheme expression:
    guile -c "expression"
  • Listen on a port or a Unix domain socket (the default is port 37146) for remote REPL connections:
    guile --listen=port_or_socket

© tl;dr; authors and contributors