Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    use strict;
    ...
        ...
        },
    
  2. or download this
    get '/hello/:name?' => sub {
        my $name = route_parameters->get('name') // 'Whoever you are';
        return "Hello there, $name";
    };