Skip to content

Instantly share code, notes, and snippets.

@dvdsgl
Created March 26, 2012 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvdsgl/2206328 to your computer and use it in GitHub Desktop.
Save dvdsgl/2206328 to your computer and use it in GitHub Desktop.
findRoots 0 b c = Nothing
findRoots a b c = Just ((-b + d) / 2*a, (-b - d) / 2*a)
where d = sqrt (b^2 - 4*a*c)
main = print (findRoots 1 6 8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment