package Marp::ExporterModule; use strict; use warnings; use base 'Exporter'; our @EXPORT = qw( blah ); our @EXPORT_OK = qw( moo ); sub blah { print 4; } sub moo { print 'moo'; } 1;