solutions/A Tour of Nix/05.nix

8 lines
92 B
Nix
Raw Normal View History

2024-04-16 19:13:00 -04:00
let
h = "Strings";
value = 4;
in
{
helloWorld = "${h} ${toString value} the win!";
}