|
Answer» Benefits of Haskell expression:
- In Haskell, variable, data structure ETC. is immutable
- Haskell expression has no issues LIKE updating global variables or printing to the screen
- Everytime calling the same function with the same argument will result in the same output
- It is possible to DECOUPLE I/O from the rest of the code, reducing programming ERROR; it is very important feature of Haskell programming
- Without TELLING Haskell what type of data to read, read the function in the program will direct what to read.
Benefits of Haskell expression:
|