TOC Prev Next

JSON Sugar and other Goodness

Comments

CUE supports C-style line comments.

comments.cue:

// a doc comment
one: 1
two: 2 // a line comment

$ cue export comments.cue

{
    "one": 1,
    "two": 2
}