The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Name: Call an empty function with 2 arguments
# Repeat: 20

sub empty {
   my($arg1, $arg2) = @_;
   # do nothng
}

### TEST

empty("foo", 12);