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

📄 filter.t

📁 source of perl for linux application,
💻 T
字号:
BEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib/';    }}chdir 't';use Filter::Simple::FilterTest qr/not ok/ => "ok", fail => "ok";print "1..6\n";sub fail { print "fail ", $_[0], "\n" }print "not ok 1\n";print "fail 2\n";fail(3);&fail(4);print "not " unless "whatnot okapi" eq "whatokapi";print "ok 5\n";no Filter::Simple::FilterTest;print "not " unless "not ok" =~ /^not /;print "ok 6\n";

⌨️ 快捷键说明

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