Help for this page

Select Code to Download


  1. or download this
    @_ = ($self->{rest});
    goto &{ $self->can('value') };
    
  2. or download this
    goto &{ $_[0]->can('value') };
    
  3. or download this
    perl -e 'print sub { "Hello @{[shift]}!\n" }->("World")'