use IEPM::PingER;
$answer = ping_it (host.domain.edu);
Another way is to use @EXPORT_OK in the Perl Module:
@EXPORT_OK = qw(ping_it log_it);
And in the Perl Program
use IEPM::PingER qw(log_it)