Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TypeChecker

Build Status

Type checker for polymorphic lambda calculus.

Usage

  • Open the project with Intellij IDEA
  • Run main and enter the lambda term
  • Type syntax:
    • Arrow type: <type> => <type>
    • Universal type: forall <type-variable> . <type>
  • Term syntax:
    • Abstraction: \<variable>: <type> -> <term>
    • Application: <term> <term>
    • Universal abstraction: forall <type-variable> -> <term>
    • Universal application: <term> ~ <type>

Example

  • Input: forall alpha -> \f: forall beta . beta => alpha -> \x: Bool -> f ~ Bool x
  • Output: Type: ∀alpha . (∀beta . beta => alpha) => Bool => alpha

About

Type checker for polymorphic lambda calculus

Resources

Stars

Watchers

Forks

Contributors

Languages