ZZ
Size: a a a
ZZ
ZZ
ZZ
function wtf(col)
println("Creating arr inside function")
m = 0;
@time begin
co = collect(col.bs);
arr :: Array{String} = Array{String}(undef, length(co)); # YES EVEN THIS
for q in 1:length(arr)
arr[q]= co[q]
end
end
println("Doing loop")
@time for zz in 1:length(arr) if arr[zz] == "B" m+=1 end end
println("m=", m)
end
VG
VG
ZZ
ZZ
VG
VG
ZZ
VG
ZZ
ZZ
ZZ
ZZ
VG
VG
ZZ