...
1# Note: this file contains literal tab characters.
2
3name.first = "Arthur"
4"name".'last' = "Dent"
5
6many.dots.here.dot.dot.dot = 42
7
8# Space are ignored, and key parts can be quoted.
9count.a = 1
10count . b = 2
11"count"."c" = 3
12"count" . "d" = 4
13'count'.'e' = 5
14'count' . 'f' = 6
15"count".'g' = 7
16"count" . 'h' = 8
17count.'i' = 9
18count . 'j' = 10
19"count".k = 11
20"count" . l = 12
21
22[tbl]
23a.b.c = 42.666
24
25[a.few.dots]
26polka.dot = "again?"
27polka.dance-with = "Dot"
28
29[[arr]]
30a.b.c=1
31a.b.d=2
32
33[[arr]]
34a.b.c=3
35a.b.d=4
View as plain text