in reply to Re: perl reports fastcwd 'redefined' when using Cwd and -W
in thread perl reports fastcwd 'redefined' when using Cwd and -W
#!/usr/bin/perl use Cwd; use strict; use warnings; no warnings 'redefine'; my $cwd = getcwd(); print "You're in '", getcwd(), "'\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: perl reports fastcwd 'redefined' when using Cwd and -W
by ikegami (Patriarch) on Jan 20, 2007 at 03:48 UTC |