Nested templated data: Difference between revisions

Content added Content deleted
No edit summary
Line 184: Line 184:


=={{header|Julia}}==
=={{header|Julia}}==
The array structure needs to be specified as Any type of data, to allow later assignment of strings to the paces in the array where there are integers.
The array structure needs to be specified as Any type of data, to allow assignment of String to positions in the array originally containing integers.
<lang julia>t = ([Any[Any[1, 2],
<lang julia>t = ([Any[Any[1, 2],
Any[3, 4, 1],
Any[3, 4, 1],