I am converting a C application to J.  The C app has a lot of data declared in 
arrays.  I would like to cut and paste this stuff.  The problem is, the C stuff 
is structured like this:

int array[] = {0,1,2,3...
4,5,6,7...
8,9,10,11...}

This goes on for hundreds of lines.  My cutting and pasting like this doesn't 
work:

array =: 0 1 2 3...
4 5 6 7...
8 9 10 11...

I would like to do a "line continuation" at the end of every line but have no 
idea how to do it.  I searched the literature for a couple hours but didn't 
find anything.

Is this possible?

Thanks.



      
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to