Cross Reference: option_p.t
xref
: /
osnet-11
/
usr
/
src
/
cmd
/
perl
/
5.8.4
/
distrib
/
lib
/
bignum
/
t
/
option_p.t
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
usr
/
bin
/
perl
-w
###############################################################################
use
Test
;
use
strict
;
BEGIN
{
$| =
1
;
chdir
't'
if
-d
't'
;
unshift
@
INC
,
'../lib'
;
plan
tests
=>
2
;
}
use
bignum
p =>
'12'
;
ok
(
Math
::
BigInt
->
precision
()
,
12
)
;
ok
(
Math
::
BigFloat
->
precision
()
,
12
)
;