Peano numbers are a simple way of representing the natural numbers using only a zero value and a successor function.
Peano numbers are a simple way of representing the natural numbers using only a zero value and a successor function. In haskell it is easy to create a type of Peano number values, but since unary representation is inefficient, they are more often used to do type arithmetic due to their simplicity.