GDL Construct Delimiters

The construct delimiter characters are the curly braces: { and }. Construct delimiter characters additionally behave like linebreaks, so you must follow or precede a construct delimiter with a linebreak sequence.

The following two code examples show the use of construct delimiters. The first example has the value spread over several lines.

*Person: FlorenceF
{
 *Company:Contoso Pharmaceuticals
 {
 *Location: Redmond, WA
 }
}

The second example combines the value into one line but still uses the curly braces to delimit the parts of the value.

*Person: FlorenceF{*Company:Contoso Pharmaceuticals{*Location: Redmond, WA}}