Skip to content

Instantly share code, notes, and snippets.

@Altreus
Created June 26, 2014 12:41
Show Gist options
  • Save Altreus/5240f92e962415896ef3 to your computer and use it in GitHub Desktop.
Save Altreus/5240f92e962415896ef3 to your computer and use it in GitHub Desktop.
sub notes {
my ($pattern, @scale) = @_;
return map { $note < @scale ? $scale[$note] : undef } split //, $pattern;
}
#...
for my $note (notes($pattern, @scale)) {
if (defined $note) {
$it->n($note)
}
else {
$it->r
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment