Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

🧮 Haskell Programming Language

Haskell is an advanced, purely functional programming language. It is statically typed, lazily evaluated, and features a strong type-inference engine.


📖 Key Topics

  1. Pure Functions: Referential transparency, lack of side effects.
  2. Type System: Strong static types, type classes, type inference.
  3. Lazy Evaluation: Call-by-need valuation, infinite data structures.
  4. Monadic IO: Managing state and input/output cleanly in a pure functional environment.