- or download this
print ($foo & 255) + 1, "\n";
- or download this
1 + 1, "\n"; # Obviously not what you meant.
- or download this
print(($foo & 255) + 1, "\n");
- or download this
$ perl -MO=Deparse,-p -e 'print (4-1) + 2+3 * (2*2);'
((print(3) + 2) + 12);