Help for this page

Select Code to Download


  1. or download this
    package X;
    
    ...
    use Time::HiRes qw(usleep);
    
    1;
    
  2. or download this
    use warnings;
    use strict;
    ...
    print Dumper {a => 1};
    usleep 500000;
    copy 'x.txt', 'y.txt' or die $!;
    
  3. or download this
    importing 'X::copy' sub into our own namespace
    importing 'X::usleep' sub into our own namespace
    ...
              'a' => 1
            };
    No such file or directory at x.pl line 20.