summaryrefslogtreecommitdiffstats
path: root/third_party/rust/ron/tests/preserve_sequence_ex1.ron
blob: 8373cfd379c5e8202bd320dc6dc852ad0f191e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(
    boolean: true,
    float: 8.2,
    map: {
        1: '1',
        2: '4',
        3: '9',
        4: '1',
        5: '2',
        6: '3',
    },
    nested: (
        a: "Decode me!",
        b: 'z',
    ),
    tuple: (
        3,
        7,
    ),
)