Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Tom-Le/SchemeInterpreter
An experimental Scheme interpreter.
https://github.com/Tom-Le/SchemeInterpreter
Last synced: 2 months ago
JSON representation
An experimental Scheme interpreter.
- Host: GitHub
- URL: https://github.com/Tom-Le/SchemeInterpreter
- Owner: Tom-Le
- Created: 2014-09-30T20:54:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-30T18:03:52.000Z (over 9 years ago)
- Last Synced: 2024-04-24T16:41:54.028Z (9 months ago)
- Language: C
- Homepage:
- Size: 289 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - SchemeInterpreter
README
Experimental Scheme interpreter
===============================This project uses cmake. To compile and install:
$ mkdir build
$ cd build
$ cmake ..
$ make
$ make installProgram will be installed to `/usr/local` by default.
Built-in procedures
-------------------Basic operations:
quote
define
lambda
let
exitScheme pair and list operations:
cons
car
cdr
cadr, caddr, cadddr, caddddr
last
append
list
lengthPredicates:
equal?
list?
symbol?
number?
procedure?
null?Conditional operations:
cond
if
assocArithmetic operations:
+
-
*Boolean operations:
and
or
notRelational operations:
>
<
>=
<=
=