Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 361 Bytes

File metadata and controls

22 lines (12 loc) · 361 Bytes

There are several modules that provide HTTPS capability. WWW and HTTP::UserAgent are probably the most popular right now, but others exist.

use WWW;
say get 'https://sourceforge.net/';

or

use HTTP::UserAgent;
say HTTP::UserAgent.new.get('https://sourceforge.net/').content;