Rairyu
|
  |
| Joined: 11 Apr 2011 |
| Total Posts: 815 |
|
|
| 03 Jan 2012 07:09 PM |
Iif its like this: if x == 0 then... or is it if x ~= 0 then? |
|
|
| Report Abuse |
|
|
Seranok
|
  |
| Joined: 12 Dec 2009 |
| Total Posts: 11083 |
|
|
| 03 Jan 2012 07:14 PM |
To say 'if x is not equal to zero' if x ~= 0
To say 'if x is equal to zero' if x == 0 |
|
|
| Report Abuse |
|
|
|
| 03 Jan 2012 07:44 PM |
Or, to say 'if x is not equal to zero' if not x == 0
Or, to say 'if x is equal to zero' if not x ~= 0 then |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 03 Jan 2012 08:53 PM |
~= means not equal to == means equal to. |
|
|
| Report Abuse |
|
|