Skip to content

Instantly share code, notes, and snippets.

@silky
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save silky/d533ed49ff26f88afd6b to your computer and use it in GitHub Desktop.

Select an option

Save silky/d533ed49ff26f88afd6b to your computer and use it in GitHub Desktop.
fix
-- what is this?
-- http://en.wikibooks.org/wiki/Haskell/Fix_and_recursion
fix :: (a -> a) -> a
fix f = f (fix f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment