What modules are distributed with Perl?

前端 未结 8 1518
误落风尘
误落风尘 2021-02-13 20:00

How do I know what modules are distributed with Perl?

My first guess is that the core modules listed here are always included, though I cannot find this stated explicitl

8条回答
  •  借酒劲吻你
    2021-02-13 20:45

    look in you main symbol table, it will show you all the 'standard' packages available...

    print %main::;
    

提交回复
热议问题