Created
February 22, 2010 10:38
-
-
Save sukria/310992 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package TestApp; | |
| use Dancer; | |
| set content_type => 'text/plain'; | |
| my $count; | |
| #foreach my $a ('a' .. 'z') { | |
| foreach my $b ('a' .. 'z') { | |
| foreach my $c ('a' .. 'z') { | |
| my $path = "${b}${c}"; | |
| get "/$path" => sub { | |
| $path; | |
| }; | |
| $count++; | |
| } | |
| } | |
| #} | |
| true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment