Execute Code With -e

perl -e 'print int(rand(100)), "\n" foreach(1..10)';
perl -e "print int(rand(100)), qq(\n) foreach(1..10)";
perl -le "print int(rand(100)) foreach(1..10)";
perl -el "print int(rand(100)) foreach(1..10)";