= function:
Compare two value and return true if both are equals.
Examples:
- running:
(= 1, 3)will give:false
- running:
(= 1, 1)will give:true
- running:
(= "1", 1)will give:false
- running:
(= "abc", "abc")will give:true
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
= function:Compare two value and return true if both are equals.
(= 1, 3)
will give: false(= 1, 1)
will give: true(= "1", 1)
will give: false(= "abc", "abc")
will give: true