Help for this page
my $op = shift @ARGV; # first element of @ARGV now in $op and removed from @ARGV. ... print multiply(@ARGV) . "\n" if $op eq 'multiply'; # subs as before
my $op = shift @ARGV; # first element of ARGV in $op and removed from @ARGV. ... print $h{$op}->(@ARGV) . "\n"; # subs as before