File: sample_server

package info (click to toggle)
libhttp-server-simple-perl 0.52-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 1,739; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (9)
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();