1Description from the home page: 2 3Devel::LexAlias provides the ability to alias a lexical variable in a 4subroutines scope to one of your choosing. 5 6If you don't know why you'd want to do this, I'd suggest that you skip 7this module. If you think you have a use for it, I'd insist on it. 8 9Still here? 10 11lexalias( $where, $name, $variable ) 12 13 $where refers to the subroutine in which to alias the lexical, it 14 can be a coderef or a call level such that you'd give to caller 15 16 $name is the name of the lexical within that subroutine 17 18 $variable is a reference to the variable to install at that location 19 20WWW: https://metacpan.org/release/Devel-LexAlias 21