blob: 76d6ace4f154ffe03202c62a8cb20d2564c926b8 [file] [log] [blame] [view]
[TOC](Readme.md) [Prev](foldany.md) [Next](numberlit.md)
# Comments
CUE supports C-style block and line comments.
<!-- CUE editor -->
```
// whole numbers
one: 1
two: 2
/* fractions
*/
"two-and-a-half": 2.5
```
<!-- JSON result -->
```json
{
"one": 1,
"two": 2,
"two-and-a-half": 2.5
}
```