_v#
Print the full perl -V report to STDOUT.
תקציר#
use Config;
Config::_V();
מה מוחזר#
Nothing. Side effects only: a multi-section dump covering the myconfig summary, compile-time options (sorted), the host OS, the compile-date line, every PERL*/PPERL* entry in %ENV, and the contents of @INC.
דוגמאות#
## Equivalent of the command-line `pperl -V`:
use Config;
Config::_V();
מקרי קצה#
Output goes to the OS
STDOUTdirectly; Perl-levelSTDOUTredirection withlocal *STDOUTdoes not affect it.@INCentries are written verbatim, including any non-UTF-8 bytes.
הבדלים מן ה-upstream#
Lines describing the compiler and compile date reflect pperl’s Rust-based build.
%ENVprobe includesPPERL*in addition toPERL*so pperl-aware environments are visible in the dump.