math.integers: fix help lint on 32-bit
parent
a089163a40
commit
a46671e3ad
|
@ -4,7 +4,7 @@ IN: math.integers
|
|||
ARTICLE: "integers" "Integers"
|
||||
{ $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:"
|
||||
{ $example "USE: classes" "134217728 class ." "fixnum" }
|
||||
{ $example "USE: classes" "67108864 class ." "fixnum" }
|
||||
{ $example "USE: classes" "128 class ." "fixnum" }
|
||||
{ $example "134217728 128 * ." "17179869184" }
|
||||
{ $example "USE: classes" "1 128 shift class ." "bignum" }
|
||||
|
|
Loading…
Reference in New Issue