Initial commit

This commit is contained in:
Yiyun Liu 2025-05-29 13:46:56 -04:00
commit c28102c0f0
8 changed files with 1175 additions and 0 deletions

18
syntax.sig Normal file
View file

@ -0,0 +1,18 @@
Tm(VarTm) : Type
Ty : Type
bool : Type
Level : Type
Void : Ty
FlFun : Ty -> Ty -> Ty
Fun : bool -> Ty -> Ty -> Ty
Fixed : bool -> Level
Floating : bool -> Level
Abs : (bind Tm in Tm) -> Tm
FlAbs : (bind Tm in Tm) -> Tm
FlApp : Tm -> Tm -> Tm
App : Tm -> Tm -> Tm