http://qs1969.pair.com?node_id=1133401


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

1) Fire #1 which interrupted task #2

2) Fire #2 which interrupted task #3

3) What I *SHOULD* be working on

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

Replies are listed 'Best First'.
Re^2: The top three priorities of my open tasks are (in descending order of likelihood to be worked on) ...
by chacham (Prior) on Jul 09, 2015 at 12:56 UTC

    What happened to task #1?

      my @originaltasks=($task1,$task2,$task3); my @newtasks=@originaltasks; while(@fires){ unshift @newtasks,$_; pop @newtasks; ($task1,$task2,$task3)=@newtasks; }