REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 3-Aug-2010 Edit History |
Returns TRUE if the values are identical.
Arguments:
value1
value2
See also:
This function returns true if two values are the same. That is, there is no way to distinguish between them. For instance, in the case of a string, they would occupy the same memory.
a: "apple"
b: a
print a =? b
true
b: tail a
print a =? (head b)
true
print "apple" =? "apple"
false
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |