solutions/A Tour of Nix/04.nix

7 lines
75 B
Nix
Raw Normal View History

2024-04-16 19:13:00 -04:00
let
h = "Hello";
in
{
helloWorld = "${h} World"; # Modify this line
}