in reply to Re^2: Difference Quantity of two Arrays
in thread Difference Quantity of two Arrays

It's the increment operator.

When dealing with numbers (or undef),
$a++
means
$a = $a + 1
except it won't issue a warning if $a is undefined.