racket

Racket language interpreter. More information: <https://racket-lang.org>.

Install

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

Racket language interpreter. More information: <https://racket-lang.org>.

  • Start a REPL (interactive shell):
    racket
  • Execute a Racket script:
    racket path/to/script.rkt
  • Execute a Racket expression:
    racket --eval "expression"
  • Run module as a script (terminates option list):
    racket --lib module_name --main arguments
  • Start a REPL (interactive shell) for the `typed/racket` hashlang:
    racket -I typed/racket

© tl;dr; authors and contributors