hnix/data/let-comments-multiline.nix
2014-08-27 23:54:31 +02:00

13 lines
236 B
Nix

let
b.a = 3; /*
this is a multiline comment
/* we can also nest these comments
*/ /*
*/
*/
b.c = { e = {}; };
/* just some more comments
*/
b.c.e.f = 4;
/* this file is documented really well */
in b /* todo */