13 07 2010 perl Ruby Python Tweet
Flask周りを調べていたらいくつかあった
Dancer面白そう。
#!/usr/bin/perl use Dancer; get '/hello/:name' => sub { return "Why, hello there " . params->{name}; }; dance;