Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. package MyApp;
  4.  
  5. use base qw/ Web::Easy /;
  6.  
  7. sub body {
  8. my $req = shift;
  9. return $output = "hello world";
  10. }
  11.  
  12. MyApp->new();
  13. MyApp->setup();
Add Comment
Please, Sign In to add comment