package db_demo_postpone; use strict; use warnings; use Exporter qw(import); our @EXPORT_OK = qw(testsub3); sub testsub3 { warn "inside testsub3"; } warn "testsub3 compiled"; 1;