tour-of-nix/05.nix

8 lines
92 B
Nix
Raw Normal View History

2022-04-05 14:14:25 +02:00
let
h = "Strings";
value = 4;
in
{
helloWorld = "${h} ${toString value} the win!";
}