73.146 PrintList

PrintList( L )

This functions prints each of the elements of a list L on a separate line.

    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 Next
Index

GAP 3.4.4
April 1997