File: golf.cgi

package info (click to toggle)
libweb-simple-perl 0.033-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 380 kB
  • sloc: perl: 1,622; makefile: 7
file content (4 lines) | stat: -rwxr-xr-x 148 bytes parent folder | download | duplicates (4)
1
2
3
4
#!/usr/bin/perl
use Web::Simple;
sub dispatch_request { [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ] }
__PACKAGE__->run_if_script;