http://www.perlmonks.org?node_id=1057866


in reply to Re^4: Creating 'new' subroutine.
in thread Creating 'new' subroutine.

yes but

and this is relevant to the logic error in Re^2: Creating 'new' subroutine. how?

Replies are listed 'Best First'.
Re^6: Creating 'new' subroutine.
by Lennotoecom (Pilgrim) on Oct 11, 2013 at 11:20 UTC
    "@_ is an array, an array in scalar context returns the number of elements (a number), and anumber is never a reference"
    that was an answer for that comment, I didnt imply creating a
    reference out of a number.
    so, I don't understand what is your point.

      You posted code where you test an array with ref, it doesn't do what you think it does (it does nothing)

      its the equivalent of  if( not ref "shamalama" eq "dingdong" ){ ... }

      its equivalent to  if(1){ ... }

      clear now?

        thank you, got carried away a bit)