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 a single argument
# Repeat: 20

sub empty {
   my $var = shift;
   # do nothng
}

### TEST

empty("foo");