in reply to ClearCase and Perl
Can you edit your post to put in code tags? It makes it much, much easier to read. Viz.:
use warnings; use strict; use Cwd; sub main() { my $foo = 'bar'; } main();
versus
use warnings; use strict; use Cwd; sub main() { $foo = 'bar'; } main();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: ClearCase and Perl
by czach12345 (Initiate) on Mar 07, 2014 at 15:00 UTC | |
by czach12345 (Initiate) on Mar 07, 2014 at 19:47 UTC |