For example: ``` FILES_0_NAME=A FILES_1_NAME=B FILES_2_NAME=C FILES_3_NAME=D ``` The above vars should populate the following: ``` type Config struct { Files []File } type File struct { Name string } ```