in reply to installing Strawberry Perl 64 bit
#!/usr/bin/perl use strict; use warnings; use Config; my $Config; if ($Config{use64bitint}) { print "Supports 64-bit numbers\n"; } else { print "Does not support 64-bit numbers\n" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: installing Strawberry Perl 64 bit
by tilly (Archbishop) on Aug 24, 2008 at 03:54 UTC |