Add vscode extension, command line argument, and positioned error handling.

This commit is contained in:
2024-07-04 23:40:38 -04:00
parent 0cad438f4d
commit b9f921ab3b
24 changed files with 5701 additions and 98 deletions

View File

@@ -11,7 +11,7 @@ id = \ a => \ x => x
List : U -> U
List = \ A => (L : U) -> L -> (A -> L -> L) -> L
nil : (A L : U) -> L -> (A -> L -> L) -> L
nil : (A : U) -> List A
nil = \ A L n f => n
Bool : U