The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl
use strict;
my $d = MIDI::Drummer::Tiny->new(
file => $0 . '.mid',
signature => '3/4',
bpm => 100,
bars => 16,
);
$d->count_in(1);
# Viennese
for my $n (1 .. $d->bars) {
$d->note($d->quarter, $d->ride1, $d->kick);
$d->note($d->quarter, $d->ride1, $d->snare);
$d->note($d->quarter, $d->ride1, $d->snare);
}
$d->write;