Giter Site home page Giter Site logo

nonari / lambda-interpreter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jhleee/lambda-interpreter

0.0 1.0 0.0 72 KB

Simple Lambda interpreter in OCaml with syntactic sugar

Makefile 4.20% OCaml 95.80%
lambda-calculus ocaml interpreter extensions

lambda-interpreter's Introduction

Lambda calculus with extensions

Ocaml implementation of lambda calculus interpreter with extensions for:

  • let in
  • letrec in
  • if then else
  • succ
  • pred
  • iszero
  • Records
  • Natural Numbers
  • Context

How to use

  • Compilation: make all
  • Execution: ./lambda
  • Use examples:
    • Logical AND in pure lambda calculus
      $ (L p.L q. p q p)(L t.L f.t)(L t.L f.t)
    • Sum two numbers with explicit FIX combinator
      $ let fix = L f.(L x. f (L y. x x y)) (L x. f (L y. x x y)) in let sumaux = L f. (L n. (L m.if (iszero n) then m else succ (f (pred n) m))) in let sum = fix sumaux in sum 44 55
    • Sum two numbers with letrec
      $ letrec sum = lambda n. lambda m. if iszero n then m else succ (sum (pred n) m) in sum 44 55
    • Project a record by label
      $ {a=1, b=2}.b

lambda-interpreter's People

Contributors

alexbudi avatar gjhlee avatar jhleee avatar nonari avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.