packages feed

fay-0.19: tests/fix.hs

module Fix where

main :: Fay ()
main = print (head (tail (fix (\xs -> 123 : xs))))

fix f = let x = f x in x