- or download this
$ perl -Mstrict -Mwarnings -e '
use Data::Dumper;
...
'
$VAR1 = 'a';
$VAR2 = 1;
- or download this
$ perl -Mstrict -Mwarnings -e '
use Data::Dumper;
...
$VAR1 = {
'a' => 1
};
- or download this
sub get_transactions {
my ($class, $transaction_id) = @_;
...
}
- or download this
...
my $transactions_id = shift;
...
my $ar = $dbh->selectall_arrayref( $sql, undef, $transactions_id )
+;
print Dumper $ar;
...