Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    for (1 .. 10) { print "printing $_\n"; warn "warning $_\n"; }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    printing 10
    
    END
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    warning 10
    
    END