tour-of-nix/03.nix

9 lines
79 B
Nix
Raw Normal View History

2022-04-05 14:14:25 +02:00
let
h = "Hello";
w = "World";
s = " ";
in
{
helloWorld = h + s + w;
}