@Dan Getz , , . b = [i+1.1 for i in tmp]
1 eltype
b
:
julia> [i+1 for i in [1,2,3]]
3-element Array{Int64,1}:
2
3
4
julia> b = [i+1.1 for i in [1,2,3]]
3-element Array{Float64,1}:
2.1
3.1
4.1
for-loops b
( @Dan Getz: b = Vector{Int}(len)
), , . , - , , , .
< > 1. , Juliav.5.5, , . , PR .