test.pl 128 B

12345678910111213
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use Test::More;
  5. my $rc = 0;
  6. plan tests => 0;
  7. $rc = ok(1);
  8. diag("Returned: $rc");