Mark Hill <[EMAIL PROTECTED]> wrote:
 
>       I was working on a perl script to the kde side of a bbmenu, but my perl isn't 
>       good enough to know how to do recursion.

Recursion:  see recursion.

func()
{
        # do something
        if ($listitem->next)
        {
                return func($listitem->next);
        }
        else
                return $listitem->value;
}

-Jan

-- 
Jan Schaumann 
http://www.netmeister.org

Reply via email to