Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use XML::Parser;
    use strict;
    ...
    open (MYFILE, '>data.txt');
    print MYFILE "Tags in the array are @tags\n";
    close (MYFILE);
    
  2. or download this
    package truncator;
    
    ...
     print @tags;
    
    1;