You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
770 B

  1. Haskell is very powerful and can be used for pretty much anything. However, there are difficulties in any language. Let's name a few for haskell:
  2. \begin{itemizep}
  3. \item intellectual complexity? New way of thinking?
  4. \item although you rarely need it in haskell, debugging can be difficult at times
  5. \item because the type system is extremely powerful/complex, type error messages can be very confusing and don't always show the error you expected
  6. \item no premium-like IDE with every possible feature (yet)
  7. \item dynamic linking is sort of WIP yet, lots of ABI breakage
  8. \item because most of the world thinks in imperative style languages, it's often difficult to find pseudo-code for functional style languages, so you end up reverse-engineering algorithms
  9. \end{itemizep}