- or download this
sub somesub {
no warnings 'redefine';
...
# several more
# ....
}
- or download this
sub abc { 1 }
...
local *abc = sub { 6 } if 1;
# Prints 6
print abc(), "\n";
- or download this
package Anypackage;
sub can_read {
# Some checks here
}
- or download this
sub can_read { 1 }