5 lines
66 B
Nix
5 lines
66 B
Nix
let
|
|
attrs = {x = 123; y = 456;};
|
|
in
|
|
(removeAttrs attrs ["x"]).y
|
let
|
|
attrs = {x = 123; y = 456;};
|
|
in
|
|
(removeAttrs attrs ["x"]).y
|