Skip to content

Instantly share code, notes, and snippets.

@zby
Created January 11, 2013 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zby/4509425 to your computer and use it in GitHub Desktop.
Save zby/4509425 to your computer and use it in GitHub Desktop.
sub frobnicate {
my( $self, $data ) = @_;
...
$self->twiddle( $data );
...
}
sub twiddle {
my( $self, $data ) = @_;
...
}
# VERSUS
sub frobnicate {
my $self = shift;
...
$self->twiddle();
...
}
sub twiddle {
my $self = shift;
my $data = $self->data;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment