Help for this page

Select Code to Download


  1. or download this
    sub make_bin_ops {
        my $op = shift;
    ...
    }
    my ($div_OP) = make_bin_ops('/');
    
  2. or download this
    sub make_bin_ops {
        $op = shift;
    ...
    my ($div_OP, $mult_OP) = make_bin_ops('/'), make_bin_ops('*');
    print &$div_OP(2,2);
    print &$mult_OP(2,2);