Garrett Goebel wrote:
>Could someone shoot down or prop up the following:
>
>* Subroutines automatically get their name as a label

Ick! Shades of Pascal! Why don't we just replace "return $value"
with "subroutine_name = $value;"!

Seriously, what is the point of 

    sub func1
    {
        func2();
    }
    
    sub func2
    {
        last func1;
    }
    
?  Imho, it is a BAD THING for functions to know who called them,
and to vary their behavior accordingly. 

 ----------------------------------------------------------------------
 Eric J. Roode,  [EMAIL PROTECTED]           print  scalar  reverse  sort
 Senior Software Engineer                'tona ', 'reh', 'ekca', 'lre',
 Myxa Corporation                        '.r', 'h ', 'uj', 'p ', 'ts';

Reply via email to