1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[tests]
foo = bar
foobar=baz
;comment
[foobar]
;foobarcomment
qux=" asd"
"quxqux " = asd
quxquxqux="hello\"wörld"
qux2="a\f"
[types]
integer = 0x20
bool = true
float = 0.5
array1 = 1
array2 = 1
|
>
>
>
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
; Comment in global category
global=yes
[tests]
foo = bar
foobar=baz
;comment
[foobar]
#foobarcomment
qux=" asd"
"quxqux " = asd
quxquxqux="hello\"wörld"
qux2="a\f"
"asd=asd"=foobar
[types]
integer = 0x20
bool = true
float = 0.5
array1 = 1
array2 = 1
|