blob: 256c115eacdf9d46307985a49eb7671e7b485ac4 [file] [log] [blame]
cue export fieldname.cue
cmp stdout expect-stdout-cue
-- frontmatter.toml --
title = "Quotes are Optional for Field Names"
description = ""
-- text.md --
JSON objects are called structs in CUE.
An object member is called a field.
Double quotes may be omitted from field names if their name contains no
special characters and does not start with a number:
-- fieldname.cue --
{
one: 1,
two: 2,
"two-and-a-half": 2.5
}
-- expect-stdout-cue --
{
"one": 1,
"two": 2,
"two-and-a-half": 2.5
}