Perl: Variables and Math


Example: Variables and output in Perl


		$a=2;
		$b=3;
		print $a+$b
	

Output:

  5