data Exp
= Let String Exp Exp
| Exp1 Exp1
deriving Show
What does the Let keyword from the documentation page example mean? (I am aware of the normal meaning of let)
What does the Let keyword from the documentation page example mean? (I am aware of the normal meaning of let) |
||||
|
|
|
It's not a keyword. It's simply a name given to the first constructor of the |
|||||||||
|
|
In this case As you can see the first argument to the constructor is substition and the second argument is the expression the substition applies to. |
||||