Skip to content

Instantly share code, notes, and snippets.

@frankcash
Created December 17, 2014 00:10
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 frankcash/0d2514a262396a81b8e0 to your computer and use it in GitHub Desktop.
Save frankcash/0d2514a262396a81b8e0 to your computer and use it in GitHub Desktop.
How to learn "PERL"
use strict;
use warnings;
use LWP::Simple;
my $url = 'https://www.python.org/';
my $content = get $url or die "Unable to get $url\n";
print $content;
@mager
Copy link

mager commented Dec 17, 2014

😀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment