- or download this
###########################################################
#
...
# Its cool.
#
###########################################################
- or download this
#
# This is a less intrusive way of setting off a long
...
# code block. I also usually include a blank line at
# the end for spacing.
#
- or download this
use strict; #always
my $this_is_ a_variable_name #does this comment stand out?
my $x; #how about this one?
my $what_is_going_on #where will the next comment be?
- or download this
use strict; # always
my $this_is_a_variable_name; # does this comment stand out?
my $x; # how about this one?
my $what_is_going_on; # where will the next comment be?
- or download this
$x++; # increment $x
- or download this
$x++; # keep track of how many users have logged in