Fix sample programs

This commit is contained in:
Martin Fredin 2023-04-29 16:02:51 +02:00
parent a2f61ea910
commit a87862a99f
19 changed files with 8 additions and 185 deletions

View file

@ -1,5 +1,7 @@
const2 : a -> b -> a
const2 x y = x
f : a -> a
f x = (const2 x 'c')
main = f 5