in reply to Re^3: Function signatures in POD-headlines/pseudo code! Is there a standard?
in thread Function signatures in POD-headlines/pseudo code! Is there a standard?

or an array which is taken per reference, because of the prototype (like in shift)

Method calls are not influenced by prototypes

sub Y::Pushy(\@){ warn join ' ', map {"($_)"} @_, ''; } my @blah = 1 .. 2; Y::Pushy @blah; Y->Pushy(@blah); __END__ (ARRAY(0x3d8bbc)) () at - line 2. (Y) (1) (2) () at - line 2.
  • Comment on Re^4: Function signatures in POD-headlines/pseudo code! Is there a standard?
  • Download Code