Perl 6 as I see it.... read entire post
tekeriada
posted on Jun 10, 2006
| views: 3962
|
Tags: programming, Perl comment, perl
There are two ways of putting a comment in Perl.
The first one is to use #.
# is good for commenting out a line.
Example:
$r=89;
#watch out for this
print "end\n"; #it can be here as well
The second ... read entire post
foottuns
posted on Aug 12, 2006
| views: 807
|
Tags: web development, perl, programming
Arritmetic operators are means of executing basic arithmetic equations inside of your scripts. Perl can perform addition, subtraction, multiplication, division, exponents, or modulus remainders.... read entire post