You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
162 B
Raku

use LWP::Simple;
$content = get("http://www.cpan.org/doc/FAQs/index.html");
open FILEHANDLE, ">file.txt";
print FILEHANDLE $content;
close FILEHANDLE;