Help for this page

Select Code to Download


  1. or download this
    ###########################################################
    #
    ...
    #   Its cool.
    #
    ###########################################################
    
  2. 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.
    #
    
  3. 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?
    
  4. 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?
    
  5. or download this
    $x++;  # increment $x
    
  6. or download this
    $x++;  # keep track of how many users have logged in