Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
It seems that this block of code is evaluated despite the fact that $os isn't win32 and errors out requiring the Win32::TieRegistry even though I'm running it on a mac.if ( $os =~ /win32/i ) { use Win32::TieRegistry ( Delimiter=>"/", ArrayValues=>0 );} }
Any thoughts?
|
|---|