Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1012 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 1012 Bytes

TAPL in Rust

Yet another collection of implementations of TAPL (Types and Programming Languages) written in Rust.

See Resources for Types and Programming Languages for the original implementations written in OCaml.

  • arith.rs

    • Chapter 3: Untyped Arithmetic Expressions
    • Chapter 4: An ML Implementation of Arithmetic Expressions
  • untyped.rs

    • Chapter 5: The Untyped Lambda-Calculas
    • Chapter 6: Nameless Representaion of Terms
    • Chapter 7: An ML Implementation of the Lambda-Calculus
  • simplebool.rs

    • Chapter 8: Typed Arithmetic Expressions
    • Chapter 9: Simply Typed Lambda-Calculus
    • Chapter 10: An ML Implementation of Simple Types
  • fullsub.rs

    • Chapter 17: An ML Implementation of Subtyping
  • fullpoly.rs

    • Chapter 25: An ML Implementation of System F