On 1/20/08, Kairit Sirts <[EMAIL PROTECTED]> wrote: > This last sentence must be done as many times as the user says. How to put > the self assignment into loop?
Assignment is an explicit operation, so you need to accomodate that somehow. That said, let's say the user wants this operation to be completed n times. You can do that without assignment, pushing the assignment to a higher level. For example: text=: (],[EMAIL PROTECTED]@])&.>/(n#a:),<text That said, I have not reviewed your code for opportunities for better approaches. -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
