Skip to content

Keyword: "not equals"

Pebaz edited this page May 29, 2019 · 1 revision

Description

Compares two values and returns a Boolean value with the result (True or False).

Usage

(!= 1 1)  :: False
(!= 2 1)  :: True
(!= "a" "b")  :: True
(!= 'a 'a)  :: False
(!= [4] [4])  :: False

Clone this wiki locally