| [reply] |
even a simple code causes perl.exe to crash
use Math::BigInt;
$ro = 0;
| [reply] [d/l] |
I checked on my Active State 5.22 installation on Win XP 32 bit and BigInt is already there; code below works fine without installing anything. haukex says BigInt also comes with Strawberry 5.22. Most likely cause of your woes is a botched installation of something that you didn't even need to install! I would uninstall your Perl, then re-install a fresh copy. If BigInt is there, you are done. If not, then report back with exact details of what you are doing and messages that you see.
#!usr/bin/perl
use warnings;
use strict;
use Math::BigInt;
my $ro=0;
print $ro;
| [reply] [d/l] |
| [reply] |
I cannot compile perl script with use bigint else perl.exe crashes
It's very difficult to envisage just how one might install Math::BigInt in such a way that it causes the behaviour you describe.
One suspects that you must have done something else.
What was the exact command that you ran to install Math::BigInt ?
What does perl -V output ?
Cheers, Rob
| [reply] [d/l] |