a = [1; 2; 3]
b = [1, 2, 3]
println(typeof(a))
println(typeof(b))
println(a == b)
shows
Vector{Int64}
Vector{Int64}
true
I’m confused.
a = [1; 2; 3]
b = [1, 2, 3]
println(typeof(a))
println(typeof(b))
println(a == b)
shows
Vector{Int64}
Vector{Int64}
true
I’m confused.