File: test_e2e.cfg

package info (click to toggle)
python-libconf 2.0.1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 172 kB
  • sloc: python: 875; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Example config
appconfig: {
    version = 37;
    version-long = 370000000000000L;
    version-autolong = 370000000000000;
    name = "libconf",
    delimiter = faLse
    works = truE
    allows /* inline comments */ : 0x0A;
    eol-comments = 0x0aL; // C++ style comment
    list: (3, "chicken", (), {group: true}),
    sub_group: { /* C style comment */
        sub_sub_group: {
            yes: "yes",
            @include "include.cfg"
        };
        arr = [1, 2],
        str = "Strings " "are " /* c1 */ "joined despite " # c2
              "comments";
    };
}