Help for this page

Select Code to Download


  1. or download this
    $ alias perle
    alias perle='perl -Mstrict -Mwarnings -Mautodie=:all -MCarp::Always -E
    +'
    
  2. or download this
    $ perle 'print (localtime)[6];'
    print (...) interpreted as function at -e line 1.
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.
     at -e line 1.
    
  3. or download this
    $ perle 'use diagnostics; print (localtime)[6];'
    print (...) interpreted as function at -e line 1 (#1)
    ...
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.
     at -e line 1.
    
  4. or download this
    $ perle 'my $wday = (localtime)[6]; print $wday;'
    6
    
  5. or download this
    $ perle 'print +(localtime)[6];'
    6