Hacker News new | ask | show | jobs
by hackyhacky 1043 days ago
What is "improper" about this implementation in Haskel?

  fix :: (a -> a) -> a
  fix f = let x = f x in x
1 comments

The y combinator is used to implement recursion in a language without recursion no?

That definition is dependent on recursion already being present.