Declare a matrix with break lines

Nobody suggested

julia> hcat(1,2,3,
       4,5,6)
1×6 Array{Int64,2}:
 1  2  3  4  5  6

It is clear and doesn’t require too much typing.

1 Like