aboutsummaryrefslogtreecommitdiff
path: root/contrib/ls-config/sample/config
blob: abe7ddad44602478a5d8f6dce095f5bd2e64d8f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
grp : 
{
  value = 10;
  name = "sample";
};
lst = ( 
  {
    name = "sample";
  }, 
  {
    comment = "sample secong group";
    val = 10.2;
  } );
info = "more info about types in libconfig9 documentations";
arr = [ 10, 20, 30 ];
integer = 100;
longint = 100L;
flo = 100.01;
boolean : 
{
  truevalue = true;
  falsevalue = false;
};