Help for this page

Select Code to Download


  1. or download this
    use Dancer2;
    get '/' => sub { "Hello World" };
    dance;
    
  2. or download this
    use REST::Client;
    my $client = REST::Client->new();
    $client->GET('http://localhost:3000/');
    print $client->responseContent();