Subject: Re: 360 Assignment 2

> 
> 
> I've been comparing my test output to the test files on the server, and I think
> there might be another bug in your program. The functions for test 3 are
> [right, left, id.....] but your output shows (id) then right, left, right...
> Am I correct in saying that your test3 output is incorrect? 
> 
> If not then it's back to the drawing board (or should that be back to vi) with 
> my program.
> 

Check the "main" function: it has an "id" tacked on to
the list of operations. So, 'main "BUG" [left, right]'
will actually be 'main "BUG" [id, left, right]'. The reason
for this hack is that you want to show "BUG" 
unchanged before you do any transformations on it.

/CC