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

📄 bytes.t

📁 source of perl for linux application,
💻 T
字号:
#!/usr/bin/perl -wBEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't' if -d 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib';    }}use strict;use Test::More tests => 4;use_ok('ExtUtils::MakeMaker::bytes');SKIP: {    skip "bytes.pm appeared in 5.6", 3 if $] < 5.006;    my $chr = chr(400);    is( length $chr, 1 );    {        use ExtUtils::MakeMaker::bytes;        is( length $chr, 2, 'byte.pm in effect' );    }    is( length $chr, 1, '  score is lexical' );}

⌨️ 快捷键说明

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