I think this would make sense since that is how it works in matlab. Could also be done with julia's broadcasting, but to me it seems smoother to just check if it's 1x1 and then do element-wise multiplication.
a = [s 1]
b = s
a*b # Right now this produces an error since a is 1x2 and b is 1x1