Help for this page

Select Code to Download


  1. or download this
    simple:     print $day_of_week[$wday];
    complex:  print $day_of_week[ ((localtime($^T))[6] + 4) % 7 ];
    
  2. or download this
    if ($foo) {
        bar;
    } else {
        baz;
    }
    
  3. or download this
    if ($foo) {
        bar;
    ...
    else {
        baz;
    }