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

Merge pull request #173 from nielsegberts/not_undefined_b

`b` is already defined in section 4.7 if the user follows along in the repl
This commit is contained in:
Artturi 2022-04-17 14:21:22 +03:00 committed by GitHub
commit e0208616ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,2 @@
nix-repl> let a = (let b = 3; in b); in b
error: undefined variable `b' at (string):1:31
nix-repl> let a = (let c = 3; in c); in c
error: undefined variable `c' at (string):1:31