Help for this page

Select Code to Download


  1. or download this
    print [localtime]->[6], "\n";
    # Outputs 2 for me, today, because it's Tuesday and weeks start at 0 f
    +or Sunday.
    
  2. or download this
    use Time::Piece;
    my $t = localtime;
    print join(', ', $t->day_of_week, $t->day, $t->fullday), "\n";
    # Outputs 2, Tue, Tuesday