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

use strict;
use warnings;

# This is an example module used by Test::MockModule for testing.

sub Vars {
	return;
}

sub param {
	return;
}

sub cookie {
    return 'choc-chip';
}

1;