How do you declare an array with a custom start index in Julia?
In other words, when I declare an array under special circumstances, how can I make the first element's index 0 or 2 instead of 1.
Short answer: there is no built-in way to do this in Julia.
Long answer: you can make a custom array type that would support this fairly easily, and this SO question has good solutions for this problem.