in reply to Re: The top three priorities of my open tasks are (in descending order of likelihood to be worked on) ...
in thread The top three priorities of my open tasks are (in descending order of likelihood to be worked on) ...

What happened to task #1?

  • Comment on Re^2: The top three priorities of my open tasks are (in descending order of likelihood to be worked on) ...

Replies are listed 'Best First'.
Re^3: The top three priorities of my open tasks are (in descending order of likelihood to be worked on) ...
by ksublondie (Friar) on Oct 06, 2015 at 19:40 UTC
    my @originaltasks=($task1,$task2,$task3); my @newtasks=@originaltasks; while(@fires){ unshift @newtasks,$_; pop @newtasks; ($task1,$task2,$task3)=@newtasks; }