The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
sub iamok {
   print "iamok\n";
}
sub iamnotok {
   no warnings qw(uninitialized);
   print "iamnotok\n";
}
if (scalar @ARGV) {
        iamnotok(@ARGV);
} else {
        iamok();
}