get '/foo/:name/bar/:age/:occupation' => sub { return '
'.Dumper({ params }).'';
};
####
http://localhost:5000/foo/Discipulus/bar/42/student?country=Eataly&city=Roma
####
$VAR1 = {
'name' => 'Discipulus',
'age' => '42',
'city' => 'Roma',
'occupation' => 'student',
'country' => 'Eataly'
};