Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 446 Bytes

numberlit.md

File metadata and controls

30 lines (24 loc) · 446 Bytes

TOC Prev Next

JSON Sugar and other Goodness

Number Literals

CUE adds a variety of sugar for writing numbers.

numlit.cue:

[
    1_234,       // 1234
    5M,          // 5_000_000
    1.5Gi,       // 1_610_612_736
    0x1000_0000, // 268_435_456
]

$ cue export numlit.cue

[
    1234,
    5000000,
    1610612736,
    268435456
]