Code: Select all
if (3 <> 4) then put "not equal"Code: Select all
if (3 is not 4) then put "not equal"Code: Select all
if (3 != 4) then put "not equal"I must be missing something very simple
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
if (3 <> 4) then put "not equal"Code: Select all
if (3 is not 4) then put "not equal"Code: Select all
if (3 != 4) then put "not equal"