in reply to Export again
And thenpackage MyStdMod; use Time::HiRes qw|gettimeofday|; use base 'Exporter'; our @EXPORTS = qw|gettimeofday|; 1;
I'm not sure if that is a good way to proceed.#!/usr/bin/perl use strict; use warnings; use 5.10.0; use MyStdMod; say MyStdMod::gettimeofday();
|
|---|