Update nix.md

This commit is contained in:
Boris Verkhovskiy 2025-01-21 05:14:41 -07:00 committed by GitHub
parent 53bf1500de
commit af2520a07b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
nix.md
View File

@ -86,7 +86,7 @@ with builtins; [
("ab" + "cd") # String concatenation ("ab" + "cd") # String concatenation
#=> "abcd" #=> "abcd"
# String Interpolation (formerly known as "Antiquotation") lets you embed values into strings. # String interpolation (formerly known as "antiquotation") lets you embed values into strings.
("Your home directory is ${getEnv "HOME"}") ("Your home directory is ${getEnv "HOME"}")
#=> "Your home directory is /home/alice" #=> "Your home directory is /home/alice"