nix-in-node/samples/let-in.nix

2 lines
53 B
Nix
Raw Normal View History

2022-02-02 11:52:14 +01:00
let x = { a = 1; b = x.a + 1; c = x.b + 1; }; in x.c