br_lite.t

来自「source of perl for linux application,」· T 代码 · 共 31 行

T
31
字号
#!/usr/bin/perl -w###############################################################################use Test;use strict;BEGIN  {  $| = 1;  chdir 't' if -d 't';  unshift @INC, '../lib';  plan tests => 1;  }eval 'require Math::BigInt::Lite;';if ($@ eq '')  {  # can use Lite, so let bignum try it  require bigrat; bigrat->import();  # can't get to work a ref(1+1) here, presumable because :constant phase  # already done  ok ($bigrat::_lite,1);  }else  {  print "ok 1 # skipped, no Math::BigInt::Lite\n";  }  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?