vspandan / Pure-Lambda-Calculus-Interpreter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implemention of  lambda calculus



;;; Abstract Syntax for the LAMBDA CALCULUS
;;; =======================================

;;; <ast> ::= 
;;;           
;;;           <id-ref-ast> |
;;;           <function-ast> |
;;;           <app-ast>

;;; <function-ast> ::= (function <id> <ast>)
;;; <app-ast>      ::= (app  <ast>  <ast> )

About


Languages

Language:Racket 100.0%