Fetch uri

Author: stmuk

You want to fetch a uri

Source code: 20-01-fetching-uri.p6

#!/usr/bin/env perl6

use v6;

use LWP::Simple;

my $html = LWP::Simple.get('http://examples.perl6.org/');

say $html;