my $add_3_things = arbitrary_operator_maker('+', 3); my $result = $add_3_things->(3,4,5); print "$result\n"; my $other_result = $add_3_things->(77,88,99); print "$other_result\n"; #etc.