The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Regex;

use strict;
use warnings;

sub test {
    my $test = shift;

    return $test =~ /blah/;
}

1;