I can't find an example of accessing array element in "Arrays" chapter of Julia Manual

I’m scanning “Arrays” chapter of Julia Manual and I don’t see syntax description and a simple example of accessing array element, e.g.:

a = [3 1; 4 1]
a[1, 2]
a[1][2]

I’m pretty sure, I’m missing something.

Are you looking for
https://docs.julialang.org/en/v1/manual/arrays/#man-array-indexing-1
?

5 Likes

Thanks. I was looking in Base → Arrays. No wonder it felt so dry.