1. Computing

Assignment Operator

From , former About.com Guide

Definition: The assignment operator in perl is the = character. It is used to assign data to any of perl's data types - a scalar, list, or hash.
 $aScalar = "Scalar Value";
 @aList = ("List", "Data");
 %aHash = ("hash" => "data", "more" => "values"); 
  1. About.com
  2. Computing
  3. Perl
  4. Perl Tutorials
  5. Perl Glossary
  6. Assignment Operator

©2013 About.com. All rights reserved.