[julia-users] Re: invalid assignment location

2016-05-16 Thread Nguyen Vinh Phu
Thanks a lot :) Best regards, Phu On Monday, 16 May 2016 18:33:27 UTC+10, Nguyen Vinh Phu wrote: > > Hello, > > > Could you please help me about the following error > > > *ERROR: LoadError: LoadError: syntax: invalid assignment location "3"* > > * in include at >

[julia-users] Re: invalid assignment location

2016-05-16 Thread Kristoffer Carlsson
julia> 3 = 5 ERROR: syntax: invalid assignment location "3" in eval(::Module, ::Any) at ./boot.jl:226 On Monday, May 16, 2016 at 10:33:27 AM UTC+2, Nguyen Vinh Phu wrote: > > Hello, > > > Could you please help me about the following error > > > *ERROR: LoadError: LoadError: syntax: invalid

[julia-users] Re: invalid assignment location

2014-01-03 Thread andrew cooke
Simpler example: julia for a::Uint8 in 0x0:0x1; println(a); end ERROR: syntax: invalid assignment location (:: a Uint8) julia for a::Uint8 in (0x0,0x1); println(a); end 0 1 julia for a in 0x0:0x1; println(a); end 0 1 On Friday, 3 January 2014 08:04:12 UTC-3, andrew cooke wrote: Hi,