Help for this page
# single arg, used for simple and dirty sub foo { ... # will warn me if $href->{hello_sub} is not defined print 'hi!' if $href->{hello_sub}; }
# processes arguments passed to subroutine in hashref # returns hash ... print 'hi!' if $opts{hello_sub}; }