solutions/A Tour of Nix/03.nix

9 lines
79 B
Nix
Raw Normal View History

2024-04-16 19:13:00 -04:00
let
h = "Hello";
w = "World";
s = " ";
in
{
helloWorld = h + s + w;
}