mirror of
https://github.com/NixOS/nix.git
synced 2025-11-11 13:06:01 +01:00
240 B
240 B
| synopsis | prs |
|---|---|
| `nix repl` pretty-prints values | 9931 |
nix repl will now pretty-print values:
{
attrs = {
a = {
b = {
c = { };
};
};
};
list = [ 1 ];
list' = [
1
2
3
];
}