PracticeDev/study_perl/web_simple.pl

14 lines
178 B
Perl
Raw Permalink Normal View History

2022-12-20 17:31:11 +08:00
#!/usr/bin/perl
# run with
# plackup <script file>
use strict;
use warnings;
my $app = sub {
return [
'200',
[ 'Content-Type' => 'text/html' ],
[ 42 ],
];
};