Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 341 Bytes

README.md

File metadata and controls

28 lines (15 loc) · 341 Bytes

lispy

Scheme Interpreter in Python

Goals

This project is for only study purpose

Original project by:

Peter Norvig, 2010-16

See http://norvig.com/lispy.html

How to use

>>>from lispy import repl

>>>repl()

lispy>

lispy> (define circle-area (lambda (r) (* pi (* r r))))

lispy> (circle-area 2)

12.566370614359172

lispy>