in reply to Re: Re: Recursion question...
in thread Recursion question...

Specifically, you didn't test this line: do_tree($child) for my $child (@children); A post-fix for must operate on $_ -- you're not allowed to give an iterator variable. do_tree($_) for @children;

_____________________________________________________
Jeff[japhy]Pinyan: Perl, regex, and perl hacker.
s++=END;++y(;-P)}y js++=;shajsj<++y(p-q)}?print:??;

Replies are listed 'Best First'.
Re: Re: Re: Re: Recursion question...
by c0d34w4y (Acolyte) on Dec 15, 2001 at 23:23 UTC
    Oh yeah.... definitely! ;-).
    
    THankx for the hint.
    
    ps.
    I keep telling myself to quit doing any hacking at
    2:00 a.m. in the morning.  
    


    --
    print join(" ", map { sprintf "%#02x", $_ }unpack("C*",pack("L",0x1234 +5678)))