A portable, compact and extensible Scheme implementation that is R4RS compliant. This includes closures, I/O, tail calls, first-class continuations and a Read Eval Print Loop (REPL).
- Very Compact. Ribbit removes unused code and performs a specialized compression according to the source code. Read about our Scheme interpreter implementation (REPL) inside 7KB
- Portable. Ribbit currently runs on 25 different hosts, including : JavaScript, Assembly (x86), C, Python, POSIX Shell, Prolog and more. See all targets.
- Extensible. Ribbit can easily define new primitives that interact with any of the 25 host languages. Read about our markup system.
For more information about Ribbit, look at our papers, try it on your computer or try it online:
Ribbit is regularly tested with the following Scheme compilers and interpreters:
- Gambit v4.7.5+
- Guile v3.0.10+
- Chicken v5.4.0+
- Kawa v3.1.1+
If you have any of them installed on your system, it should work! Otherwise, you can install Gambit from prebuilt binaries here, or from sources here.
The compiler's source code is in a single file: src/rsc.scm. After cloning
the repository, to interpret the Ribbit Scheme Compiler run your
favourite Scheme interpreter with the rsc.scm file inside the src directory:
cd src
gsi rsc.scm --help # for Gambit's interpreter
csi rsc.scm --help # for Chicken's interpreter
kawa rsc.scm --help # for Kawa
guile -s rsc.scm --help # for Guile
You can also compile the Ribbit Scheme Compiler with Gambit or Chicken using make:
cd src
# for Gambit
make rsc.exe
# for Chicken Scheme
SCHEME_COMPILER=chicken make rsc.exe
# You can then run the compiler with:
./rsc.exe --help
You are now ready to jump to the examples!
Like all systems, Ribbit has some quirks. If you encounter problems that are not documented or if you have any questions, please reach out in the issues section of Github.
The compiler's source code is in a single file: src/rsc.scm.
Ribbit currently compiles Scheme code to more than 25 different host languages. To select
a language, use the -t compiler option followed by the extension of the target language. For example, the option
can be followed by js (JavaScript), asm (x86 Assembly), c (C), py (Python), hs (Haskell), pro (Prolog)
or any of the supported targets.
The -m option causes a minification of the generated program. This requires a
recent version of Gambit and may need aditionnal dependencies depending on the target under minification.
See the host/<host>/minify script of a specific host for details.
The -l option allows selecting the Scheme runtime library (located in the
lib subdirectory). Here is a list of libraries :
r4rs: Adds all essential R4RS procedures. Includes a REPL that is fully R4RS compliant.r4rs/tc: Liker4rsbut with run time type checking.min,max: Minimal library for small scheme implementations, including a minimal REPL.max-tc: Likeminandmaxbut with run time type checking.define-macro: Necessary for using thedefine-macroconstruct.
For more options, run the rsc with the --help option.
Here are a few examples to showcase the capabilities or Ribbit.
All commands need to be executed inside the src directory and supposes that rsc.exe
has been compiled with either Gambit or Chicken. To use the interpreter
instead, simply replace ./rsc.exe ... with the correct interpreter invocation
<scheme-interpreter> rsc.scm ....
$ ./rsc.exe -t py -l r4rs lib/r4rs/repl.scm -o repl.py
$ python3 repl.py
> (+ 1 2)
3
> (define handle (open-output-file "test.txt"))
0
> (display "Hello Ribbit!" handle)
0
> ^D (Ctrl-D)
$ cat test.txt
Hello Ribbit!
Do the same but generating a JavaScript R4RS REPL:
$ ./rsc.exe -t js -l r4rs lib/r4rs/repl.scm -o repl.js
$ node repl.js
> (+ 1 2)
3
Try it with different hosts (make sure they support R4RS in the supported target list) :
$ ./rsc.exe -t asm -l r4rs lib/r4rs/repl.scm -o repl.s # (x86 assembly, need linux as it generates an ELF file)
$ ./rsc.exe -t c -l r4rs lib/r4rs/repl.scm -o repl.c
$ ./rsc.exe -t hs -l r4rs lib/r4rs/repl.scm -o repl.hs
$ make repl-asm.exe
$ ls -la repl-asm.exe
-rwxr-xr-x 1 leonard staff 6639 5 Aug 13:36 repl.exe
!!! 6.5KB !!!
$ echo '(+ 1 2)' | ./repl-asm.exe
> 3
>
$ echo '(display "Hello from Ribbit!")' > hello.scm
$ ./rsc.exe -t pro -l max hello.scm -o hello.pro # compile it with prolog
$ swipl hello.pro # run it with swi-prolog
Hello from Ribbit!
Then, choose among 25 host languages :
$ ./rsc.exe -t asm -l max hello.scm -o hello.asm
$ ./rsc.exe -t c -l max hello.scm -o hello.c
$ ./rsc.exe -t hs -l max hello.scm -o hello.hs
$ ./rsc.exe -t js -l max hello.scm -o hello.js
$ ./rsc.exe -t py -l max hello.scm -o hello.py
$ ./rsc.exe -t clj -l max hello.scm -o hello.clj
$ ./rsc.exe -t lisp -l max hello.scm -o hello.lisp
$ ./rsc.exe -t pro -l max hello.scm -o hello.pro
$ ./rsc.exe -t scm -l max hello.scm -o hello.scm
$ ./rsc.exe -t sh -l max hello.scm -o hello.sh
$ ./rsc.exe -t go -l max hello.scm -o hello.go
$ ./rsc.exe -t lua -l max hello.scm -o hello.lua
$ ./rsc.exe -t ml -l max hello.scm -o hello.ml
$ ./rsc.exe -t idr -l max hello.scm -o hello.idr
$ ./rsc.exe -t scala -l max hello.scm -o hello.scala
$ ./rsc.exe -t zig -l max hello.scm -o hello.zig
$ ./rsc.exe -t adb -l max hello.scm -o hello.adb
$ ./rsc.exe -t bas -l max hello.scm -o hello.bas
$ ./rsc.exe -t dart -l max hello.scm -o hello.dart
$ ./rsc.exe -t java -l max hello.scm -o hello.java
$ ./rsc.exe -t jl -l max hello.scm -o hello.jl
$ ./rsc.exe -t kt -l max hello.scm -o hello.kt
$ ./rsc.exe -t pl -l max hello.scm -o hello.pl
$ ./rsc.exe -t ps -l max hello.scm -o hello.ps
$ ./rsc.exe -t wat -l max hello.scm -o hello.wat
$ cat examples/square.scm
(cond-expand ((host py) ;; Python host
(define-primitive (square x)
"lambda: push(pop()**2),"))
((host c) ;; C host
(define-primitive (square x)
"{
int x = NUM(pop());
push2(TAG_NUM(x*x), PAIR_TAG);
}")))
(%%putchar (square 8)) ;; prints '@' as 64 is the ASCII value of '@'
(%%putchar 10) ;; prints a newline
$ ./rsc.exe -t py examples/square.scm -o square.py
$ python3 square.py
@
$ ./rsc.exe -t c examples/square.scm -o square.c
$ gcc square.c -o square
$ ./square
@
Note that the incremental compiler used by the repl-max.scm only supports a subset
of the Scheme special forms. In particular procedure definitions should use
(define f (lambda (x) ...)) instead of (define (f x) ...).
$ ./rsc.exe -t pro -l max-tc examples/repl-max.scm -o repl-max.pro
$ swipl repl-max.pro
> (+ 1 2)
3
^D
Choose any language that supports the core features in the supported targets table and compile it by
replacing pro with the target language.
For other examples and tests, you can look at the examples and tests directories.
The makefile in the src directory has these make targets:
$ make check # Run all tests for all hosts (very long)
$ HOST=c make check # Run tests for the C host
$ HOST=py PY_HOST_INTERPRETER=pypy make check # Run tests for specific host and interpreter
All targets support a varying level of features. The table below tracks what targets support which feature :
coremeans a traditional RVM implementation. These support minimal I/O (putchar, getchar only), and min/max/max-tc repls.variadicsmeans that the target supports functions with any numbers of parameters, for example, the(define (f . rest) ...)form.file I/Omeans that the target supports the file I/O primitives (open-input-file, open-output-file, etc.).r4rsmeans that the target supports the full R4RSessentialstandard. This relies on all the above features.
| Language | Core | variadics | file I/O | R4RS |
|---|---|---|---|---|
x86 Assembly (asm) |
β | β | β | β |
C (c) |
β | β | β | β |
Haskell (hs) |
β | β | β | β |
JavaScript (js) |
β | β | β | β |
Python (py) |
β | β | β | β |
WASM (wat) |
β | β | β | β |
Clojure (clj) |
β | β | β | β |
Common Lisp (lisp) |
β | β | β | β |
Prolog (pro) |
β | β | β | β |
Scheme (scm) |
β | β | β | β |
Posix-Shell (sh) |
β | β | β | β |
Go (go) |
β | β | β | β |
Lua (lua) |
β | β | β | β |
OCaml (ml) |
β | β | β | β |
Idris 2 (idr) |
β | β | β | β |
Scala (scala) |
β | β | β | β |
Zig (zig) |
β | β | β | β |
Ada (adb) |
β | β | β | β |
Visual Basic (bas) |
β | β | β | β |
Dart (dart) |
β | β | β | β |
Java (java) |
β | β | β | β |
Julia (jl) |
β | β | β | β |
Kotlin (kt) |
β | β | β | β |
Perl (pl) |
β | β | β | β |
PostScript (ps) |
β | β | β | β |
Ruby (rb) |
π§ | β | β | β |
Rust (rs) |
π§ | β | β | β |
You can find BibTeX entries for citing our work here.
We are actively developing Ribbit. If you have an idea, you can reach out to leo-ard or feeley. All papers concerning Ribbit are available here :
- Leonard Oest O'Leary, Mathis Laroche and Marc Feeley, An R4RS compliant REPL in 7KB in SCHEME Workshop @ ICPF'23, January 2024
- Leonard Oest O'Leary and Marc Feeley, A Compact and Extensible Portable Scheme VM. In MoreVMs Workshop (MOREVMS@PROGRAMMING'23), March 2023
- Samuel Yvon and Marc Feeley, A Small Scheme VM, Compiler, and REPL in 4K. In Workshop on Virtual Machines and Intermediate Languages (VMIL@SPLASH'21), October 2021.