klequis / zz-haskell-notebook

Notes from learning Haskell
1 stars 0 forks source link

Type (or datatype) #35

Open klequis opened 2 years ago

klequis commented 2 years ago

A type or datatype is a classification of values or data. Types in Haskell determine what values are members of the type or that inhabit the type. Unlike in other languages, datatypes in Haskell by default do not delimit the operations that can be performed on that data.