PrintList( L )
This functions prints each of the elements of a list L on a separate line.
L
gap> J := [ [1,2,3], [3,4], [3,4], [1,2,4] ];; PrintList( J ); [ 1, 2, 3 ] [ 3, 4 ] [ 3, 4 ] [ 1, 2, 4 ]
Previous Up Top NextIndex