Configuration file syntax and parsing for golang
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
277 B

global = "global value";
master {
string = "master string value";
integer = 500;
float = 80.80;
sub {
key = "master sub key value";
}
}
slave {
another = "slave another value";
global_reference = global;
master_sub_key = master.sub.key;
_under = 50;
}