Added more comments to the code

This commit is contained in:
sebastianselander 2023-02-22 15:24:38 +01:00
parent 8065576c31
commit 5daa5573f2
3 changed files with 18 additions and 9 deletions

View file

@ -1,2 +1,3 @@
fun : Mono Int -> Mono Int ;
fun = \x. x ;
fun = let f = \x. x in f 3 ;