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"); 