#!/usr/bin/perl // The first line of every PERL script is a commented line directed toward the PERL interpreter
print " "; // to print contents Eg:- print "Hello, Perl!";
$a = // Assign vales to a varioble, Charectors would be specified under a single cote Eg:- $a = 5; $b = 'apple';
Features
-----------
1. Case sensitive
2. # is using for comment a line
3. backslash(\) character using to escape any type of character that might interfere with our code
Eg:- $string = "David paid \$4.34 for Larry\'s shirt.";
4.
Reference
----------
http://www.tizag.com/perlT/perlprogramming.php
http://inpics.net/tutorials/perl/numbers2.html