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