tour-of-nix/04.nix

7 lines
75 B
Nix
Raw Normal View History

2022-04-05 14:14:25 +02:00
let
h = "Hello";
in
{
helloWorld = "${h} World"; # Modify this line
}