Skip to content

Instantly share code, notes, and snippets.

@hayajo
Created May 25, 2012 07:22
Show Gist options
  • Save hayajo/2786399 to your computer and use it in GitHub Desktop.
Save hayajo/2786399 to your computer and use it in GitHub Desktop.
use Mojolicious::Lite;
get '/' => sub {
my $c = shift;
$c->res->headers->content_type('text/plain');
for ( 1 .. 5 ) {
$c->write('hoge');
sleep 1;
}
$c->finish;
};
app->start;
@hayajo
Copy link
Author

hayajo commented May 25, 2012

Mojolicious でやるとこんなかんじかね

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment