- or download this
$ alias perle
alias perle='perl -Mstrict -Mwarnings -Mautodie=:all -MCarp::Always -E
+'
- 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.
- 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.
- or download this
$ perle 'my $wday = (localtime)[6]; print $wday;'
6
- or download this
$ perle 'print +(localtime)[6];'
6