Created
March 1, 2013 14:59
-
-
Save tobyink/5065185 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 v5.14; | |
| use warnings; | |
| use HTML::Tags; | |
| package MyWeb::Homepage { | |
| sub get_html { | |
| <html>, "Please pay at the checkout", </html>; | |
| } | |
| } | |
| package MyWeb::Checkout { | |
| sub get_html { | |
| <html>, "Pay me money please!", </html>; | |
| } | |
| } | |
| 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment