Created
August 5, 2013 20:47
-
-
Save msouth/6159472 to your computer and use it in GitHub Desktop.
single file tt test
This file contains 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; | |
my $tt = Template->new( START_TAG=>'<%', END_TAG=>'%>' ); | |
$tt->process(\*DATA, {}, \*stdout) ; | |
__DATA__ | |
<% index = 0; last = 0; %> | |
index is now <% index %> | |
last is now <% last %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment