in reply to to paren or not to paren

I always use parens when calling user-defined subroutines and methods (except when playing golf) because:

This is essentially the same advice given in Perl Best Practices. The first item in Chapter 9 is: "Call subroutines with parentheses but without a leading &". Luckily, Chapter 9 happens to be the free sample chapter from this book so you can read why Damian offers this advice right now.

Replies are listed 'Best First'.
Re^2: to paren or not to paren
by Jim (Curate) on Apr 28, 2014 at 03:52 UTC

    Very well put, ++eyepopslikeamosquito.

    To me, the consistent use of parentheses when calling user-defined subroutines and all methods makes the code more readable. It looks nicer.