Please fix your post, it is breaking the formatting.

As to your problem, consider the following code:

use Math::BigRat; my $num = Math::BigRat->new(157156424579004107729662594024339596952518 +6964287593983211702071746502379495623702577); my $num2 = Math::BigRat->new('1571564245790041077296625940243395969525 +186964287593983211702071746502379495623702577'); print "Numeric: $num\n"; print "Stringy: $num2\n";
c:\>perl test.pl Numeric: 1571564245790040000000000000000000000000000000000000000000000 +000000000000000000000000 Stringy: 1571564245790041077296625940243395969525186964287593983211702 +071746502379495623702577 c:\>_

In the first case, you're trying to make a constant number which has to be passed in to bigrat as a float. In the second case, bigrat gets all the digits nicely.


In reply to Re: Math::BigRat Dump Fails on Eval by SuicideJunkie
in thread Math::BigRat Dump Fails on Eval by jabowery

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.