Help for this page

Select Code to Download


  1. or download this
    'a'=~/(.)/;
    print("$1\n");           # a
    ...
       last;
    }
    print("$1\n");           # a
    
  2. or download this
    my $comment_re = qr{/\*.*?\*/;}s;
    my ($comment, $rest);
    ...
       $statement .= $line;
    }
    print("Found type 1 comment: $comment\n");