/* Example demonstrating comment support */
{
/* Block comments use slash-star notation */
name: "JASN",
/* Block comments
can span multiple lines */
version: 1,
items: [
1, /* trailing comment */
2, /* inline block comment */ 3,
],
/* Nested structures work */
config: {
enabled: true, /* boolean value */
},
/* Comments can appear almost anywhere */
end: "done", /* even at the end of a line */
}