Skip to content

Keyword: "equals"

Pebaz edited this page May 29, 2019 · 1 revision

Description

Compare any two values. Returns a Boolean value with the result (True or False).

Usage

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

Clone this wiki locally