On Wednesday, May 20, 2015 at 10:31:25 AM UTC+10, Yichao Yu wrote: > > On Tue, May 19, 2015 at 7:26 PM, Scott Jones <scott.pa...@gmail.com > <javascript:>> wrote: > > a !=0 # checks if a is not == to 0 > > a!= 0 # sets a! to 0 > > a!=0 # checks if a is not == to 0 > > That's why we should always put spaces around `=`, `==`, `!=`. > > > > > > > Spaces are very important in Julia! >
So are non-spaces: `2a` is equivalent to 2 * a `2 a` is a syntax error > > >