- or download this
my @scales;
struct( Scale => {
...
chords => '@',
notes => '@'
});
- or download this
my $sref = $scales[$scale]->chords;
push @{$sref}, $found_chord . ';' . $c[1];
- or download this
...
bless( {
...
'Scale::index' => '9'
}, 'Scale' ),
...