RosettaCodeData/Task/Collections/Julia/collections.julia

10 lines
117 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
julia> collection = []
0-element Array{Any,1}
julia> push!(collection, 1,2,4,7)
4-element Array{Any,1}:
1
2
4
7