/= (Not equal)

(/= atom1 atom2 [atom ...])

This function compares the given arguments. If they are not equal, it returns T, otherwise nil.

Examples

: (/= 2 3)

T

: (/= 2.11 2.22)

T

: (/= 2 2 3)

T

: (/= 2.0 2.00)

nil

: (/= 2 2)

nil

: (/= 2 2 2)

nil

: (/= "Test" "test")

T

: (/= "TEST" "TEST")

nil

Related Functions

=, eq, equal