in reply to Re^3: Why " subroutined redefined" warning comes?
in thread Why " subroutined redefined" warning comes?
An option if you don't import it is to alias it to another name in your package.
use Spinner (); local *s_pin = \&Spinner::spin; s_pin(); spin();
|
---|