#!/usr/bin/env perl package Cowbell; use strict; use warnings; use Exporter 'import'; our @EXPORT_OK = qw (thrice); sub thrice { return 3*$_[0]; }