From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213141516 #!/usr/bin/env perl -wuse strict;use Test;BEGIN { plan tests => 1 }use Business::Tax::VAT::Validation;my $hvat=Business::Tax::VAT::Validation->new();if (ref $hvat){ ok(1);} else { ok(0);}exit;__END__
#!/usr/bin/env perl -w
use
strict;
Test;
BEGIN { plan
tests
=> 1 }
Business::Tax::VAT::Validation;
my
$hvat
=Business::Tax::VAT::Validation->new();
if
(
ref
){
ok(1);
}
else
{
ok(0);
exit
;
__END__