VocabularymathInputsOutputsWord descriptionTests if two numbers have the same numeric value.
NotesThis word differs from
= in that it disregards differences in type when comparing numbers.
This word performs an unordered comparison on floating point numbers. See
Floating point comparison operations for an explanation.
ExamplesUSING: math prettyprint ;
3.0 3 number= .
t
USING: kernel math prettyprint ;
3.0 3 = .
f
DefinitionMethods