8 lines
92 B
Nix
8 lines
92 B
Nix
|
let
|
||
|
h = "Strings";
|
||
|
value = 4;
|
||
|
in
|
||
|
{
|
||
|
helloWorld = "${h} ${toString value} the win!";
|
||
|
}
|