hnix/data/let-comments-multiline.nix

13 lines
232 B
Nix
Raw Permalink Normal View History

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 */
2018-04-06 06:55:34 +02:00
in b /* todo */