Perl have Web Framework Mojolicious.
We may be familiar with the name Rails of Ruby.
We may be familiar with the name Django of Python.
Mojolicious may not be famous, on the other hand its performance and simplicity are very good.
use Mojolicious::Lite;
get '/' => {text => 'Hello'};
app->start;
Young people may have a prejudice against Perl.
Once you've experienced Mojolicious, you'll find that the prejudice is actually a prejudice.
Top comments (1)
Mojolicious is an awesome framework.