Skip to content

Tom-Le/SchemeInterpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Experimental Scheme interpreter

This project uses cmake. To compile and install:

$ mkdir build
$ cd build
$ cmake ..
$ make
$ make install

Program will be installed to /usr/local by default.

Built-in procedures

Basic operations:

quote
define
lambda
let
exit

Scheme pair and list operations:

cons
car
cdr
cadr, caddr, cadddr, caddddr
last
append
list
length

Predicates:

equal?
list?
symbol?
number?
procedure?
null?

Conditional operations:

cond
if
assoc

Arithmetic operations:

+
-
*

Boolean operations:

and
or
not

Relational operations:

>
<
>=
<=
=

About

An experimental Scheme interpreter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages