1 2 3
use Mojolicious::Lite; get '/' => {text => 'Hello World!'}; app->start;
1 2 3 4 5
#!/usr/bin/env perl use strict; use warnings; print "Content-Type: text/plain\n\n"; print 'Hello World!';
Comments
comments powered by Disqus