nbcl 0.5.1

Configuration language designed to be easy and understandable.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
component Server (port, address?) {
    id_required = true
    child_count = 0


    Object self.id {
        port = port
        address = address
    }
}

Server "ws" {
    port = 3000
}