Leser: 21
perl -MO=Deparse,-p -lwe '$x = 5+3*4'
perl -MO=Deparse,-p -lwe '$x = $a+$b*$c'
1
2
3
4
5
6
7
8
D:\module>perl -MO=Deparse,-p -lwe start.pl
Unquoted string "start" may clash with future reserved word at -e line 1.
Unquoted string "pl" may clash with future reserved word at -e line 1.
Useless use of concatenation (.) or string in void context at -e line 1.
BEGIN { $^W = 1; }
BEGIN { $/ = "\n"; $\ = "\n"; }
('start' . 'pl');
-e syntax OK
2010-01-01T14:00:37 renee[tt]perl -MO=Deparse,-p -lw start.pl