Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Dancer: show errors during development

package App;
use Dancer2;

set show_errors => $ENV{DANCER_ERROR};

get '/' => sub {
    return 'Hello World! <a href="/calc">calc</a>';

};

get '/calc' => sub {
    my $x = 1;
    my $y = 0;
    my $z = $x / $y;
    return 'OK';
};

App->to_app;