_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 STDOUT directly; Perl-level STDOUT redirection with local *STDOUT does not affect it.

  • @INC entries are written verbatim, including any non-UTF-8 bytes.

הבדלים מן ה-upstream#

  • Lines describing the compiler and compile date reflect pperl’s Rust-based build.

  • %ENV probe includes PPERL* in addition to PERL* so pperl-aware environments are visible in the dump.