- or download this
$navigation_map = {
first_page => {
...
NEXT => '',
},
};
- or download this
$navigation_map = [qw(first_page second_page third_page fourth_page)];
- or download this
package List::Navigator;
...
}
bless $data, $class;
}
- or download this
my $nav_list = [qw( first_page second_page third_page fourth_page )];
my $navigation_map = List::Navigator->new( $nav_list );