1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/04/set-recursive.txt
2018-01-27 22:11:28 -08:00

3 lines
52 B
Plaintext

nix-repl> rec { a = 3; b = a+4; }
{ a = 3; b = 7; }