- or download this
D:\Users\lanx>perl -MO=Deparse,-p -e"sub {return 1 and 0 }"
sub {
...
}
;
-e syntax OK
- or download this
D:\Users\lanx>perl -MO=Deparse,-p,-x10 -e"sub {return 1 and 0 }"sub {
+
+ ((return 1) and 0);
+ }
+ ;
- or download this
D:\Users\lanx>perl -MO=Deparse,-p -e"sub { return 1 and 0 }"
sub {
((return 1) and 0);
}
;
-e syntax OK