in reply to Re^2: Win 10 Anniversary killed Perl
in thread Win 10 Anniversary killed Perl

I've solved the subroutine issue by removing the  do command. Not sure why this is suddenly needed. Now for grabbing files from the internet, I was using this
use LWP::Simple; $url = "http://webfile"; $file = "c:/somefile"; getstore($url,$file);
Is this code obsolete as well? Is there a replacement? Tks.

Replies are listed 'Best First'.
Re^4: Win 10 Anniversary killed Perl
by Your Mother (Archbishop) on Sep 27, 2016 at 12:42 UTC
Re^4: Win 10 Anniversary killed Perl
by Anonymous Monk on Sep 27, 2016 at 04:29 UTC

    Is this code obsolete as well? Is there a replacement? Tks.

    Does it work?