1##############################################################################
2##
3#W  print.tst                   Utils Package
4##
5#Y  Copyright (C) 2015-2018, The GAP Group
6##
7
8gap> ReadPackage( "utils", "tst/loadall.g" );;
9gap> UtilsLoadingComplete;
10true
11
12## SubSection 2.1.1
13gap> L := List( [1..20], n -> n^5 );;
14gap> PrintSelection( L, [18..20] );
1518 : 1889568
1619 : 2476099
1720 : 3200000
18gap> PrintSelection( L, 2, 9 );
192 : 32
2011 : 161051
2120 : 3200000
22gap> PrintSelection( L, 2, 3, 11 );
232 : 32
245 : 3125
258 : 32768
2611 : 161051
27gap> s5 := SymmetricGroup( 5 );;
28gap> PrintSelection( s5, [30,31,100,101] );
2930 : (1,5)(3,4)
3031 : (1,5,2)
31100 : (1,4,3)
32101 : (1,4)(3,5)
33gap> PrintSelection( s5, 1, 30 );
341 : ()
3531 : (1,5,2)
3661 : (1,2,3)
3791 : (1,3,5,2,4)
38gap> PrintSelection( s5, 9, 11, 43 );
399 : (2,5,3)
4020 : (2,4)
4131 : (1,5,2)
4242 : (1,5,2,3,4)
43
44#############################################################################
45##
46#E  print.tst . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
47