in reply to Creating 'new' subroutine.

Assign a hash reference to $options and if @_ contains any elements then copy those to the hash.

Replies are listed 'Best First'.
Re^2: Creating 'new' subroutine.
by nitin.sh1982 (Initiate) on Oct 17, 2013 at 04:21 UTC
    Thanks. It makes sense. But, what does the 'scalar' do in that case then?

      In that case it is superfluous as @_ is already in scalar context.