Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    use lib '/home/me/project/temp';
    use Lens;
    
  2. or download this
    package Cloud;
    use strict;
    use warnings;
    1;
    
  3. or download this
    package Lens;
    use strict;
    ...
    use Cloud;
    our @ISA = qw(Exporter Cloud);
    1;