1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/tests/functional/lang/eval-okay-tojson.nix

14 lines
260 B
Nix
Raw Normal View History

2013-11-18 18:03:11 -05:00
builtins.toJSON
{ a = 123;
b = -456;
c = "foo";
d = "foo\n\"bar\"";
e = true;
f = false;
g = [ 1 2 3 ];
h = [ "a" [ "b" { "foo\nbar" = {}; } ] ];
i = 1 + 2;
j = 1.44;
2019-10-27 05:15:51 -04:00
k = { __toString = self: self.a; a = "foo"; };
2013-11-18 18:03:11 -05:00
}