Created
January 26, 2011 17:42
-
-
Save rjp/797089 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 Template; | |
use Template::Parser; | |
my $p = Template::Parser->new(); | |
my $tt = join('', <DATA>); | |
print $p->parse($tt) ? "OK" : "NOT OK"; | |
__DATA__ | |
[% INCLUDE monkeys %] | |
<ul> | |
[% FOR flange IN flanges %] | |
<li> [% flange.monkey %] | |
[% END %] | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment