Solution: Dancer Counter - try 1
package App;
use Dancer2;
my $counter = 0;
get '/' => sub {
$counter++;
return $counter;
};
App->to_app;
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
package App;
use Dancer2;
my $counter = 0;
get '/' => sub {
$counter++;
return $counter;
};
App->to_app;