This is odd. Looks like commenting out an entry in the array causes a parse error. I found this trying to do exactly that in my code, i.e. commenting out an entry to replace it with a more up-to-date set of values.
julia version 1.0.0
x= [(:test,
[("A",
"B",
"C")
#,("Should",
# "not",
# "matter")
,("D",
"E",
"F")
,("G",
"H",
"I")
])]
println(x)
ERROR: LoadError: syntax: unexpected comma in matrix expression
Stacktrace:
[1] include at .\boot.jl:317 [inlined]
[2] include_relative(::Module, ::String) at .\loading.jl:1038
[3] include(::Module, ::String) at .\sysimg.jl:29
[4] exec_options(::Base.JLOptions) at .\client.jl:229
[5] _start() at .\client.jl:421
in expression starting at C:\Users\denheyeb\Documents\khaleesi_pv\src\julia\test.jl:8
Now take the comment out…
x= [(:test,
[("A",
"B",
"C")
,("D",
"E",
"F")
,("G",
"H",
"I")
])]
println(x)
Tuple{Symbol,Array{Tuple{String,String,String},1}}[(:test, [("A", "B", "C"), ("D", "E", "F"), ("G", "H", "I")])]