tour-of-nix/03.nix

9 lines
79 B
Nix

let
h = "Hello";
w = "World";
s = " ";
in
{
helloWorld = h + s + w;
}