math.integers: fix help lint on 32-bit

db4
Slava Pestov 2009-11-06 04:52:52 -06:00
parent a089163a40
commit a46671e3ad
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ IN: math.integers
ARTICLE: "integers" "Integers" ARTICLE: "integers" "Integers"
{ $subsections integer } { $subsections integer }
"Integers come in two varieties -- fixnums and bignums. Fixnums fit in a machine word and are faster to manipulate; if the result of a fixnum operation is too large to fit in a fixnum, the result is upgraded to a bignum. Here is an example where two fixnums are multiplied yielding a bignum:" "Integers come in two varieties -- fixnums and bignums. Fixnums fit in a machine word and are faster to manipulate; if the result of a fixnum operation is too large to fit in a fixnum, the result is upgraded to a bignum. Here is an example where two fixnums are multiplied yielding a bignum:"
{ $example "USE: classes" "134217728 class ." "fixnum" } { $example "USE: classes" "67108864 class ." "fixnum" }
{ $example "USE: classes" "128 class ." "fixnum" } { $example "USE: classes" "128 class ." "fixnum" }
{ $example "134217728 128 * ." "17179869184" } { $example "134217728 128 * ." "17179869184" }
{ $example "USE: classes" "1 128 shift class ." "bignum" } { $example "USE: classes" "1 128 shift class ." "bignum" }