The best conventions other teams are using that you need to know

Steve Nolte

Developers

Style

map { push @frobbed, frobulate($_) } @list;  # not ok
@frobbed = map { frobulate($_) } @list;      # ok

Perl::Critic

The best conventions other teams are using that you need to know

By mcsnolte

The best conventions other teams are using that you need to know

  • 1,489