I have a snippet in which I am using both strict and subroutines, which is admittedly an effort to make perl less true to its nature, but I will hazard the following Q anyway.
In this subroutine I want to send and arguement and do some work, without strict I would normally operate as follows ...
But if I declare strict I cannot get my variable into the routine via the local() statement, which is a scoping issue no doubt. Nevertheless, I cannot seem to resolve this issue via conventional means. Anybody know how to to pass args using strict?