Fix first unnecessary supercombinator

This commit is contained in:
Martin Fredin 2023-02-09 17:53:39 +01:00
parent 7a2404cf74
commit ce31e4d490
10 changed files with 66 additions and 51 deletions

4
sample-programs/basic-2 Normal file
View file

@ -0,0 +1,4 @@
add x = \y. x+y;
main = (\z. z+z) ((add 4) 6);