# This is a comment and should be ignored
# These includes live within the global section
global_a = g1
global_b = g2
global_c = g3
# Should be a list
global_list = global a
global_list = global b
global_list = global c
# Should be the same value
global_parse = [global_a]
global_parse_b = [global:global_a]
# New section
[section]
section_a = s1
section_b = s2
section_c = s3
# Should be a list
section_list = section a
section_list = section b
section_list = section c
# Should be the same value
section_parse = [global_a]
section_parse_b = [global:global_a]
section_parse_c = [section:section_a]