You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, arrays can be declared only this way:
arrayWorkToo =
arrayElement1
arrayElement2
My suggestion is possibly remove such way of defining them (may be to make parsing a bit more strict), and instead allow these:
arrayWorkToo = [ 1, 2, 3 ]
arrayWorkToo = [ “red”, “yellow”, “black” ]
arrayWorkToo = [ [ 1, 2 ], [3, 4, 5] ]
arrayWorkToo = [
arrayElement1,
arrayElement2
]
arrayWorkToo = [ { x = 1, y = 2, z = 3 },
{ x = 4, y = 5, z = 6} ]
The text was updated successfully, but these errors were encountered:
Defacto there are few standards for reading/writing arrays in .ini/.conf files.
I've simply implemented the one I've seen in Python applications I had to share config files with.
Currently, arrays can be declared only this way:
arrayWorkToo =
arrayElement1
arrayElement2
My suggestion is possibly remove such way of defining them (may be to make parsing a bit more strict), and instead allow these:
arrayWorkToo = [ 1, 2, 3 ]
arrayWorkToo = [ “red”, “yellow”, “black” ]
arrayWorkToo = [ [ 1, 2 ], [3, 4, 5] ]
arrayWorkToo = [
arrayElement1,
arrayElement2
]
arrayWorkToo = [ { x = 1, y = 2, z = 3 },
{ x = 4, y = 5, z = 6} ]
The text was updated successfully, but these errors were encountered: