- or download this
sub parse {
my ($self, $file_name) = @_;
...
croak "$file_name doesn't exist";
}
}
- or download this
ok($xbrl->parse($incoming_file));
- or download this
sub parse {
my ($self, $file_name) = @_;
$self->{'_xbrl_file'} = $file_name;
...
croak "$file_name doesn't exist";
}
}