easy_config 0.5.3

A language, parser, and lexer designed to make easy to read and write configuration files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
some-key = value
nested-key = (
    one = 1
    # a comment goes here
    two = 2 # or here
)

escaped-characters = (
    \(
    \)
    \=
    \\
)