1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00

Add missing space in recursive attributes example

This commit is contained in:
Jack Jennings 2018-01-27 22:11:28 -08:00 committed by GitHub
parent c5abff6df4
commit 85087680f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,2 @@
nix-repl> rec { a= 3; b = a+4; }
nix-repl> rec { a = 3; b = a+4; }
{ a = 3; b = 7; }