The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use utf8;
use strict;
use warnings;

# Test the script distributor method by echoing back the argument and
# exiting successfully.

print "@ARGV\n";
exit 0;