Open dluciv opened 7 years ago
Experiencing this too.
idem Linux Mint 64bits Julia 0.6.0
Works fine for simple code thank's
This is my first time trying this package, so I might be doing something wrong, but I'm also experiencing this. Fails even with this very simple code for me:
function rowcol(N)
# preferred way
A=zeros(N,N)
for j=1:N
for i=1:N
A[i,j]=i+j*N
end
end
end
function colrow(N)
A=zeros(N,N)
for i=1:N
for j=1:N
A[i,j]=i+j*N
end
end
end
println(rowcol(10000))
Fails with
@unix_only not defined
on: