Compound operator : Assignment Operators « Language Basics « Perl






Compound operator

   

#!/usr/bin/perl -w

$a = 6 * 9;
print "Six nines are ", $a, "\n";
$a += 3;
print "Plus three is ", $a, "\n";
$a /= 3;
print "All over three is ", $a, "\n";
$a += 1;
print "Add one is ", $a, "\n";

   
    
    
  








Related examples in the same category

1.Using Assignment Operators on Scalar Variables
2.In Perl, an assignment itself can serve as an lvalue.
3.To set a variable, use the = operator.
4.Complex Assignment
5.Assignment Statements
6.Assign value to four variables
7.Operating and Assigning at Once
8.Basic Math Compound Assignment Statements
9.Compound Assignment Operators
10.Assignment Operators
11.The assignment operators.
12.Examples of assignment operators.