Skip to content

Instantly share code, notes, and snippets.

@lestrrat
Created August 24, 2009 05:01
Show Gist options
  • Save lestrrat/173668 to your computer and use it in GitHub Desktop.
Save lestrrat/173668 to your computer and use it in GitHub Desktop.
use strict;
sub foo {
warn "foo called with @_";
}
sub call_func {
my $func = shift;
$func->( "a", "b", "c" );
}
call_func( \&foo );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment