mirror of
https://github.com/NixOS/nix.git
synced 2025-02-16 17:02:28 +00:00
32 lines
227 B
Nix
32 lines
227 B
Nix
let
|
|
string = "str";
|
|
in [
|
|
/some/path
|
|
|
|
''${/some/path}''
|
|
|
|
''
|
|
${/some/path}''
|
|
|
|
''${/some/path}
|
|
end''
|
|
|
|
string
|
|
|
|
''${string}''
|
|
|
|
''
|
|
${string}''
|
|
|
|
''${string}
|
|
end''
|
|
|
|
''''
|
|
|
|
''
|
|
''
|
|
|
|
''
|
|
end''
|
|
]
|