Add note about 'rec' in attribute sets

This commit is contained in:
Vincent Ambo 2019-08-01 23:20:38 +01:00
parent fe3b0d3706
commit a2610a9b33

View file

@ -96,6 +96,9 @@ second line
# attribute sets (field access with dot syntax)
{ a = 15; b = "something else"; }
# recursive attribute sets (fields can reference each other)
rec { a = 15; b = a * 2; }
```
## Variable bindings