blob: 256e5b1c5349ac2de431071272ab17d7bf0d4279 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](foldany.md) [Next](numberlit.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_JSON Sugar and other Goodness_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Comments
6
7CUE supports C-style block and line comments.
8
9<!-- CUE editor -->
10```
11// whole numbers
12one: 1
13two: 2
14
15/* fractions
16 */
17"two-and-a-half": 2.5
18```
19
20<!-- JSON result -->
21```json
22{
23 "one": 1,
24 "two": 2,
25 "two-and-a-half": 2.5
26}
27```