Re: Analysis of problems with mixed encoding case insensitive matches in regex engine.
[p5sagit/p5-mst-13.2.git] / t / op / unshift.t
1 #!./perl
2
3 print "1..2\n";
4
5 @a = (1,2,3);
6 $cnt1 = unshift(a,0);
7
8 if (join(' ',@a) eq '0 1 2 3') {print "ok 1\n";} else {print "not ok 1\n";}
9 $cnt2 = unshift(a,3,2,1);
10 if (join(' ',@a) eq '3 2 1 0 1 2 3') {print "ok 2\n";} else {print "not ok 2\n";}
11
12