[nix/en] update to string interpolation

This commit is contained in:
MillerApps 2025-01-20 19:53:44 -05:00
parent fd4522df50
commit 67884752f0

2
nix.md
View File

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