TOC Prev Next

JSON Sugar and other Goodness

Comments

CUE supports C-style block and line comments.

comments.cue:

// whole numbers
one: 1
two: 2

/* fractions
 */
"two-and-a-half": 2.5

$ cue export comments.cue

{
    "one": 1,
    "two": 2,
    "two-and-a-half": 2.5
}