The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213141516171819 package Database::test5;use strict;use warnings;use Database::Abstraction;our @ISA = ('Database::Abstraction');sub new{ my $class = shift; my %args = (ref($_[0]) eq 'HASH') ? %{$_[0]} : @_; return $class->SUPER::new(id => 'ID', sep_char => ',', %args);}1;1;
package
Database::test5;
use
strict;
warnings;
Database::Abstraction;
our
@ISA
= (
'Database::Abstraction'
);
sub
new
{
my
$class
=
shift
;
%args
ref
(
$_
[0]) eq
'HASH'
) ? %{
[0]} :
@_
return
->SUPER::new(
id
=>
'ID'
,
sep_char
','
}
1;