What's a good development environment for Perl?

前端 未结 8 1034
眼角桃花
眼角桃花 2020-12-30 06:35

I develop applications using PHP or Java and will study Perl for the first time.

For PHP and Java, there are integrated development environments such as Eclipse, and

8条回答
  •  心在旅途
    2020-12-30 07:12

    What I use -- and what I've gotten the impression that most other serious Perl developers use -- is a good text editor. The only "integration" I have is via user-defined tools. For Perl, that's these:

    perl -Mstrict -cw   # Perl "lint"
    perl                # run file
    perl -d             # run file in debugger
    

    I have others for checking files in/out of version control, browsing history, etc. A good configurable editor (I'm partial to UltraEdit) will allow you to build your own environment using the tools you want instead of foisting an all-encompassing solution on you.

提交回复
热议问题