Is there anything similar to "..." in Matlab to write a Matrix over several lines?

I there a way in julia to write similar to the below in Matlab?

L = [1 2 3;...
     4 5 6;...
     7 8 9];

Yeah, just don’t add the ...

L = [1 2 3;
     4 5 6;
     7 8 9];
2 Likes

Very cool, thank you!

Just add line breaks:

julia> L = [1 2 3
            4 5 6
            7 8 9]
3×3 Matrix{Int64}:
 1  2  3
 4  5  6
 7  8  9
6 Likes