$cars_on_lot++;
The auto incrementer (++) adds 1 to the $cars_on lot variable.
print '<b>$cars_on_lot++</b> is the same to PERL as <b>$cars_on_lot = $cars_on_lot + 1</b>';
Prints the literal text: $cars_on_lot++ is the same to Perl as $cars_on_lot + 1.
<< BACK
NEXT >>