Help for this page

Select Code to Download


  1. or download this
    mystart($LumberFile);
    sub mystart {
        my ($file) = @_;
        open( my $fh, "> $file" ) or die ...
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
            print $fh "$line\n";
        }
    }
    
  3. or download this
    #!/usr/bin/perl
    package VRML;
    ...
    }
    
    1;