Is there an easy way to fill with zeros in array concatenation?

Nobody has suggested

julia> cat(rand(2,2),rand(3,3);dims=(1,2))
5×5 Matrix{Float64}:
 0.104583  0.266817  0.0       0.0       0.0
 0.915434  0.785553  0.0       0.0       0.0
 0.0       0.0       0.89667   0.760755  0.778991
 0.0       0.0       0.18982   0.439059  0.489084
 0.0       0.0       0.937842  0.298687  0.669757
4 Likes