in reply to what are blib lib _build ??

Ok I found it my self When I do module-starter --mb --module="Animal" --email="a@example.com" there are lib,t directories. t is test directory and lib directory contains what we're gonna build. When we invoke perl Build.PL, that makes script named Build and Build uses files in _build directory When we invoke Build directory blib is created and that contains output files

Replies are listed 'Best First'.
Re^2: what are blib lib _build ??
by MidLifeXis (Monsignor) on Dec 23, 2014 at 18:50 UTC

    Correct. Also see what happens when you do a build distclean. Those directories created in the build process should go away.

    --MidLifeXis