When you use the space-delimited syntax in Julia, you are requesting arrays to be concatenated together. If you want the cell-like behavior, you need to use commas:
julia> c = [a, b]
2-element Array{Array{Any,1},1}:
Any[]
Any[]
julia> c = [1, b]
2-element Array{Any,1}:
1
Any[]