diff options
author | davidovski <david@davidovski.xyz> | 2022-02-14 00:24:11 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-14 00:24:11 +0000 |
commit | 526e2bfcdb5f55f2bd94b29cf314f8cb4c37bf4f (patch) | |
tree | 086ea7cf31945c448b45d32ab940809d15ae9eb0 /test/test.conf | |
parent | 04e80e5ceadee536ccfe0315c835ac4193a32f84 (diff) |
made parseconf 4 times faster
Diffstat (limited to 'test/test.conf')
-rw-r--r-- | test/test.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/test/test.conf b/test/test.conf index 139597f..8ac673f 100644 --- a/test/test.conf +++ b/test/test.conf @@ -1,2 +1,43 @@ +key1 value +key2 value + key3 value +key5 value; +key6 value;; +include test/external.conf + +dict { +a 1 + b 2 + c 3 + d 4 + e 5 +} + +list [ + alpha + beta + gamma + delta +] + + +other_dict { + contained_list [ + a listo + of values + to be + parsed + ] + + value1 parsed + value2 parsed + + builtin { + this that + that the other + then now + } + +} |