4.4BSD/usr/src/contrib/perl-4.036/t/op/unshift.t

Compare this file to the similar file:
Show the results in this format:

#!./perl

# $Header: unshift.t,v 4.0 91/03/20 01:55:21 lwall Locked $

print "1..2\n";

@a = (1,2,3);
$cnt1 = unshift(a,0);

if (join(' ',@a) eq '0 1 2 3') {print "ok 1\n";} else {print "not ok 1\n";}
$cnt2 = unshift(a,3,2,1);
if (join(' ',@a) eq '3 2 1 0 1 2 3') {print "ok 2\n";} else {print "not ok 2\n";}