Help for this page

Select Code to Download


  1. or download this
    $ perl -we 'use constant WD => qw{Sun Mon}; print(WD)[1]'
    syntax error at -e line 1, near ")["
    ...
    $ perl -we 'use constant WD => qw{Sun Mon}; print   (WD)[1]'
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    $ perl -e 'use constant WD => qw{Sun Mon}; print (WD)[1]'
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.
    
  3. or download this
    $ perl -we 'use constant WD => qw{Sun Mon}; print (WD)[1]'
    print (...) interpreted as function at -e line 1.
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.