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

📄 implicit

📁 source of perl for linux application,
💻
字号:
Check implicit loading of features with use VERSION.__END__# Standard feature bundleuse feature ":5.10";say "Hello", "world";EXPECTHelloworld######### VERSION requirement, dotted notationuse 5.9.5;say "Hello", "world";EXPECTHelloworld######### VERSION requirement, v-dotted notationuse v5.9.5;say "Hello", "world";EXPECTHelloworld######### VERSION requirement, decimal notationuse 5.009005;say defined $INC{"feature.pm"} ? "Helloworld" : "Good bye";EXPECTHelloworld######### VERSION requirement, doesn't load anything for < 5.9.5use 5.8.8;print "<".$INC{"feature.pm"}.">\n";EXPECT<>######### VERSION requirement, doesn't load anything with requirerequire 5.9.5;print "<".$INC{"feature.pm"}.">\n";EXPECT<>######### VERSION requirement in eval {}eval {    use 5.9.5;    say "Hello", "world";}EXPECTHelloworld######### VERSION requirement in eval ""eval q{    use 5.9.5;    say "Hello", "world";}EXPECTHelloworld######### VERSION requirement in BEGINBEGIN {    use 5.9.5;    say "Hello", "world";}EXPECTHelloworld

⌨️ 快捷键说明

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