summaryrefslogtreecommitdiff
path: root/ex/sample_server
blob: a775623f13146785afe997524979786211c7de51 (plain)
1
2
3
4
5
6
7
8
9
#!perl

use warnings;
use strict;

use HTTP::Server::Simple::CGI;

my $server = HTTP::Server::Simple->new();
$server->run();