mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
25 lines
240 B
Markdown
25 lines
240 B
Markdown
|
---
|
||
|
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
|
||
|
];
|
||
|
}
|
||
|
```
|