Help for this page

Select Code to Download


  1. or download this
    #!c:/perl/bin/perl -w
    
    ...
    my $finish = strftime "%H:%M:%S", localtime;
    
    print "$start $finish";
    
  2. or download this
    #!c:/perl/bin/perl -w
    
    ...
    my $finish = strftime "%H:%M:%S", localtime;
    
    print "$start $finish";
    
  3. or download this
    my $time1 = `date '+%H:%M:%S'`;
    
  4. or download this
    my $time1 = strftime "%H:%M:%S", localtime;