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