⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bn_lite.t

📁 source of perl for linux application,
💻 T
字号:
#!/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 bignum; bignum->import();  # can't get to work a ref(1+1) here, presumable because :constant phase  # already done  ok ($bignum::_lite,1);  }else  {  print "ok 1 # skipped, no Math::BigInt::Lite\n";  }  

⌨️ 快捷键说明

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