config.pm
来自「source of perl for linux application,」· PM 代码 · 共 40 行
PM
40 行
package ExtUtils::MakeMaker::Config;$VERSION = '6.42';use strict;use Config ();# Give us an overridable config.use vars qw(%Config);%Config = %Config::Config;sub import { my $caller = caller; no strict 'refs'; *{$caller.'::Config'} = \%Config;}1;=head1 NAMEExtUtils::MakeMaker::Config - Wrapper around Config.pm=head1 SYNOPSIS use ExtUtils::MakeMaker::Config; print $Config{installbin}; # or whatever=head1 DESCRIPTIONB<FOR INTERNAL USE ONLY>A very thin wrapper around Config.pm so MakeMaker is easier to test.=cut
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?