On 2020-05-26 16:29, Brad Gilbert wrote:
There are various equality operators.

「==」 Tests for numeric equality
「eq」 Tests for string equality
「===」 Tests for value identity
「=:=」 Tests for pointer equality (Note that it looks a bit like 「:=」)
「eqv」 Tests for structure equivalence.

The 「==」 and 「eq」 operators are special because they force their values to be numbers or strings before they do anything else.

Thank you!  Wrote it down.

Reply via email to