Skip to content

A portable, compact and extensible Scheme implementation that is fully R4RS compliant. This includes closures, I/O, tail calls, first-class continuations and a Read Eval Print Loop (REPL). The R4RS Scheme REPL fits inside 6.5Kb !

License

Notifications You must be signed in to change notification settings

udem-dlteam/ribbit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Ribbit 🐸

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).

For more information about Ribbit, look at our papers, try it on your computer or try it online:

Quick start

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!

Development

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.

Usage

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 : Like r4rs but with run time type checking.
  • min, max : Minimal library for small scheme implementations, including a minimal REPL.
  • max-tc : Like min and max but with run time type checking.
  • define-macro : Necessary for using the define-macro construct.

For more options, run the rsc with the --help option.

Usage Examples

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 ....

Use RSC to compile an R4RS compliant REPL to Python

$ ./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

Generate the world's smallest R4RS compliant REPL (takes 1 minute)

$ 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
>

Generate a simple 'hello world' program in 25 different languages

$ 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

Create your own primitive in the the host language (js and C here):

$ 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
@

Generate a simple typed-checked max REPL in any of the hosts

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.

Other examples and tests

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

Supported targets

All targets support a varying level of features. The table below tracks what targets support which feature :

  • core means a traditional RVM implementation. These support minimal I/O (putchar, getchar only), and min/max/max-tc repls.
  • variadics means that the target supports functions with any numbers of parameters, for example, the (define (f . rest) ...) form.
  • file I/O means that the target supports the file I/O primitives (open-input-file, open-output-file, etc.).
  • r4rs means that the target supports the full R4RS essential standard. 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) 🚧 ❌ ❌ ❌

Research and Papers

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 :

About

A portable, compact and extensible Scheme implementation that is fully R4RS compliant. This includes closures, I/O, tail calls, first-class continuations and a Read Eval Print Loop (REPL). The R4RS Scheme REPL fits inside 6.5Kb !

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 27