Commented code and fixed some bugs I think. Still not complete

id : Int -> Int
id x = x
does not type check
This commit is contained in:
sebastianselander 2023-02-19 15:25:49 +01:00
parent db932048ba
commit 420fb107f0
2 changed files with 67 additions and 66 deletions

View file

@ -1,5 +1,2 @@
id : Mono Int -> Mono Int ;
id = \x. x ;
main : Poly a ;
main = id 3 ;
fun : Mono Int -> Mono Int ;
fun = \x. x ;