in reply to "Variable will not stay shared" warning
use diagnostics;
Use strict warnings and diagnostics or die#!/usr/bin/perl -w use diagnostics; use strict; sub outermost { my $a; sub middle { sub { $a } } }
____________________________________________________
** The Third rule of perl club is a statement of fact: pod is sexy.
|
|---|