Created
October 5, 2012 07:06
-
-
Save kan/3838484 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
| use WAF::Casual; | |
| sub index { | |
| # render HTML | |
| return "hello world"; | |
| } | |
| sub json { | |
| req my $self, $x, $y; | |
| # render json API | |
| return { result => $x + $y }; | |
| } | |
| 1; | |
| __END__ | |
| <html> | |
| <head><title>test</title></head> | |
| <body>$body</body> | |
| </html> | |
| % plackup ./hoge.pl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment