Indentation
This commit is contained in:
+7
-7
@@ -11,16 +11,16 @@ let tvarRegex = Str.regexp "^([A-Z]+)([0-9]*)$";;
|
||||
|
||||
(* Type complexe *)
|
||||
type ty =
|
||||
| TSimple of var_type
|
||||
| TImpl of ty * ty
|
||||
| TFalse;;
|
||||
| TSimple of var_type
|
||||
| TImpl of ty * ty
|
||||
| TFalse;;
|
||||
|
||||
(* λ-terme *)
|
||||
type lam =
|
||||
| LFun of var_lambda * ty * lam
|
||||
| LApp of lam * lam
|
||||
| LVar of var_lambda
|
||||
| LExf of lam * ty;;
|
||||
| LFun of var_lambda * ty * lam
|
||||
| LApp of lam * lam
|
||||
| LVar of var_lambda
|
||||
| LExf of lam * ty;;
|
||||
|
||||
(* Environnement de typage *)
|
||||
type gam = (var_type * ty) list;;
|
||||
|
||||
Reference in New Issue
Block a user