The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Echo;
use strict;
use Test::More;
sub say {
    my $cb = pop;
    is(ref($cb), 'CODE', "The last arg is a code ref");

    my ($class, @args) = @_;
    $cb->($class, @args);
}
1;