Skip to content

Instantly share code, notes, and snippets.

@peschwa
Created October 6, 2014 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peschwa/0864c6a62a16218a17a8 to your computer and use it in GitHub Desktop.
Save peschwa/0864c6a62a16218a17a8 to your computer and use it in GitHub Desktop.
$ perl -MO=Deparse -e'print "here\n";' -Mstrict -e'print "now here\n";' -MLWP -e'print "finally\n"'
use LWP;
use strict;
print "here\n";
print "now here\n";
print "finally\n";
-e syntax OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment