Help for this page

Select Code to Download


  1. or download this
      use Your::Module ();
      printf "timestamp: %s\n", Your::Module::timestamp(time);
    
      use Your::Module qw/ timestamp /;
      printf "timestamp: %s\n", timestamp(time);
    
  2. or download this
      *timestamp = \&Your::Module::timestamp;