Help for this page

Select Code to Download


  1. or download this
    use AnyEvent::Loop;
    use AnyEvent::HTTP;
    http_get 'http://yahoo.com', sub { my ($body, $hdr) = @_; die $hdr->{U
    +RL} };
    AnyEvent::Loop::run;
    
  2. or download this
    use AnyEvent::Loop;
    use AnyEvent::HTTP;
    ...
            http_get "http://$url", sub { say STDERR $url };
    }
    AnyEvent::Loop::run;