15 lines
303 B
Markdown
15 lines
303 B
Markdown
# Identifier Expression
|
|
|
|
An identifier expression references a name bound in the lexical scope.
|
|
|
|
```dcdl
|
|
Port
|
|
MyConfig
|
|
mkConfig
|
|
```
|
|
|
|
## Evaluation
|
|
|
|
An identifier evaluates the corresponding binding when its value is needed.
|
|
If no such binding exists, evaluation produces an unresolved-identifier error.
|