klequis / zz-haskell-notebook

Notes from learning Haskell
1 stars 0 forks source link

Expression #31

Open klequis opened 2 years ago

klequis commented 2 years ago

An expression is a combination of symbols that conforms to syntactic rules and can be evaluated to some result. In Haskell, an expression is a well-structured combination of constants, variables, and functions. While irreducible constants are technically expressions, we usually refer to those as “values,” so we usually mean “reducible expression” when we use the term expression. [Haskell First Principals]()