mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02: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''
|
||
|
]
|