Skip to content

Instantly share code, notes, and snippets.

@tobyink
Created March 1, 2013 14:59
Show Gist options
  • Select an option

  • Save tobyink/5065185 to your computer and use it in GitHub Desktop.

Select an option

Save tobyink/5065185 to your computer and use it in GitHub Desktop.
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