http://qs321.pair.com?node_id=11122191


in reply to Re: simplish script (I think)
in thread simplish script (I think)

Your second "foreach" is not necessary.

I think the OP is trying to do this with the second foreach:

for(my $i=1; $i < @array; $i++){ print "The difference is ", $array[$i] - $array[$i-1], "\n"; }

Replies are listed 'Best First'.
Re^3: simplish script (I think)
by NetWallah (Canon) on Sep 25, 2020 at 15:04 UTC
    You are correct(++) - I misread the curly brackets.

    Another way he can achieve this - arguably more readable is:

    my @a=@array; # make a copy, since we will destroy @a my $prev=pop @a; for (reverse @a){ print $prev - $_, "\n"; $prev=$_; }

                    "Imaginary friends are a sign of a mental disorder if they cause distress, including antisocial behavior. Religion frequently meets that description"