tour-of-nix/05.nix

8 lines
92 B
Nix

let
h = "Strings";
value = 4;
in
{
helloWorld = "${h} ${toString value} the win!";
}