# myapp.pl use Dancer; get '/' => sub { return 'Hello World!'; }; start; #### $ cpan Dancer #### $ perl myapp.pl #### $ dancer -a myapp