Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

codebox/scheme-interpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

This is an interpreter for a sub-set of the Scheme programming language. It was written as a learning exercise, and should not be used for anything important.

To use the interpreter, write your Scheme code into a text file and run scheme.py, passing the file name and location as a command-line argument, for example:

python scheme.py mycode.txt

The interpreter supports basic arithmetic and equality operators, conditional statements, the cons/car/cdr list operations, define and lambda.

Each statement in the source file will be evaluated in turn, and any printable results will be displayed to standard output. A few working Scheme programs and their resulting output are shown below:

(define factorial (
    lambda (n) (
        if (= n 1) 
            1 
            (* n (factorial (- n 1)))
        )
    )
)
(factorial 6)
720.0

 

(define fib (
    lambda (n) (
        if (< n 3)
            1
            (+ (fib (- n 1)) (fib (- n 2)))
        )
    )
)
(fib 10)
55.0

 

(define ackermann (
        lambda (m n) (
            if (= m 0)
                (+ n 1)
                (if (= n 0)
                    (ackermann (- m 1) 1)
                    (ackermann (- m 1) (ackermann m (- n 1))))
        )
    )
)
(ackermann 3 3)
61.0

About

An interpreter for a basic subset of the Scheme programming language

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.