Add release notes for "Pretty print values in nix repl"

This commit is contained in:
Rebecca Turner 2024-02-14 08:49:47 -08:00
parent 0f1269243b
commit 6d2b446e2b
No known key found for this signature in database

View file

@ -0,0 +1,24 @@
---
synopsis: "`nix repl` pretty-prints values"
prs: 9931
---
`nix repl` will now pretty-print values:
```
{
attrs = {
a = {
b = {
c = { };
};
};
};
list = [ 1 ];
list' = [
1
2
3
];
}
```