Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    #use if $VERSION < 1, 'bytes';
    use if $VERSION < 1, 'Proof' => 'try1';
    use if $VERSION > 1, 'Proof' => 'try2';
    
  2. or download this
    package Proof;
    
    sub import { print('used at ', $_[1], $/); }
    
    1;