Files
compiler-explorer/examples/nix/default.nix
2025-05-11 16:07:40 -05:00

17 lines
266 B
Nix

let
hello_world = "hello_world!";
in
{
string = hello_world;
integer = 1;
float = 3.141;
bool = true;
null = null;
list = [ 1 "two" false ];
attribute-set = {
a = "hello";
b = 2;
c = 2.718;
d = false;
}; # comments are supported
}