;) it is 100 steps. I need 10 steps driven by 2 vectors x and y
julia> l=193
193
julia> x=int(rand(10)*l)
10-element Array{Int64,1}:
126
70
132
51
77
138
94
150
142
93
julia> y=int(rand(10)*l)
10-element Array{Int64,1}:
170
111
93
126
77
135
24
182
45
179
julia> for i in [x] j in [y]
println(x,y)
end
ERROR: j not defined
in anonymous at no file:1
What wrong here ?
Pau;
